Skip to content

Commit

Permalink
Remove silent option from curl so that progress can be displayed
Browse files Browse the repository at this point in the history
  • Loading branch information
ashleykleynhans committed Aug 17, 2023
1 parent 1e6b2ee commit 6ee42d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion download.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ echo "Downloading model from ${URL}, please wait..."

cd ${DESTINATION}

if ! curl -JsL --remote-name -A "${USER_AGENT_STRING}" "${URL}"; then
if ! curl -JL --remote-name -A "${USER_AGENT_STRING}" "${URL}"; then
echo "ERROR: curl command failed. Unable to download the file."
exit 1
fi
Expand Down

0 comments on commit 6ee42d6

Please sign in to comment.