Skip to content

Commit

Permalink
Fixed call to wget (#177)
Browse files Browse the repository at this point in the history
Co-authored-by: Jasper <jasper@fedora>
  • Loading branch information
jasper-zanjani and Jasper authored Jan 16, 2025
1 parent 16f2f0f commit b508558
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ download_url_constructor() {
# ---------------------------- Download & Install ---------------------------- #
download_and_install_cli() {
local cli_file_name="runpodctl"
if ! wget -q --show-progress "$DOWNLOAD_URL" -O "$cli_file_name"; then
if ! wget -q --progress=bar "$DOWNLOAD_URL" -O "$cli_file_name"; then
echo "Failed to download $cli_file_name."
exit 1
fi
Expand Down

0 comments on commit b508558

Please sign in to comment.