Skip to content

Commit

Permalink
Revert "add quotes around curl and wget in jldownload"
Browse files Browse the repository at this point in the history
This reverts commit b11c528.
  • Loading branch information
tkelman committed Nov 21, 2015
1 parent 00e6496 commit a1040d2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions deps/jldownload
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ fi

CACHE_URL="$CACHE_HOST/$URL"

if [ -x "$CURL" ] && "$CURL" -V >/dev/null; then
if [ -x "$CURL" ] && $CURL -V >/dev/null; then
GETURL="$CURL $CURL_OPTS"
elif [ -x "$WGET" ] && "$WGET" -V >/dev/null; then
elif [ -x "$WGET" ] && $WGET -V >/dev/null; then
GETURL="$WGET $WGET_OPTS"
elif [ -x "$FETCH" ]; then
GETURL="$FETCH $FETCH_OPTS"
Expand Down

0 comments on commit a1040d2

Please sign in to comment.