We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 88c76d4 commit 7958cc7Copy full SHA for 7958cc7
install.sh
@@ -170,7 +170,6 @@ main() {
170
fi
171
172
CACHE_DIR="$(echo_cache_dir)"
173
- mkdir -p "$CACHE_DIR"
174
175
if [ "$METHOD" = standalone ]; then
176
install_standalone
@@ -234,10 +233,11 @@ fetch() {
234
233
FILE="$2"
235
236
if [ -e "$FILE" ]; then
237
- echoh "+ Reusing $CACHE_DIR/${URL##*/}"
+ echoh "+ Reusing $FILE"
238
return
239
240
+ sh_c mkdir -p "$CACHE_DIR"
241
sh_c curl \
242
-#fL \
243
-o "$FILE.incomplete" \
0 commit comments