diff options
Diffstat (limited to 'download.sh')
-rwxr-xr-x | download.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/download.sh b/download.sh index 6846524..176207a 100755 --- a/download.sh +++ b/download.sh @@ -5,7 +5,7 @@ cat packages.csv | while read line; do VERSION="$(echo $line | cut -d\, -f2)" URL="$(echo $line | cut -d\, -f3 | sed "s/@/${VERSION}/g")" MD5SUM="$(echo $line | cut -d\, -f4)" - CACHEFILE="$(basename "$URL")" + CACHEFILE="$(basename "${URL}")" if [ ! -f "${CACHEFILE}" ]; then |