diff --git a/download.sh b/download.sh index 9ba1b533c..fe1937ad0 100755 --- a/download.sh +++ b/download.sh @@ -6,6 +6,7 @@ set -e read -p "Enter the URL from email: " PRESIGNED_URL +PRESIGNED_URL=$(echo "$PRESIGNED_URL" | tr -d '\"') # drops double quotes for windows echo "" read -p "Enter the list of models to download without spaces (7B,13B,70B,7B-chat,13B-chat,70B-chat), or press Enter for all: " MODEL_SIZE TARGET_FOLDER="." # where all files should end up @@ -67,4 +68,4 @@ do else (cd ${TARGET_FOLDER}"/${MODEL_PATH}" && md5sum -c checklist.chk) fi -done \ No newline at end of file +done