Skip to content

Commit

Permalink
Use new name for --no-progress flag to b2
Browse files Browse the repository at this point in the history
> The '--noProgress' argument is deprecated. Use '--no-progress' instead.
  • Loading branch information
forevermatt authored May 29, 2024
1 parent ac8aefa commit dd3190d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion application/backup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ for dbName in ${DB_NAMES}; do

if [ "${B2_BUCKET}" != "" ]; then
start=$(date +%s)
b2 upload-file --noProgress --quiet ${B2_BUCKET} /tmp/${dbName}.sql.gz ${dbName}.sql.gz
b2 upload-file --no-progress --quiet ${B2_BUCKET} /tmp/${dbName}.sql.gz ${dbName}.sql.gz
STATUS=$?
end=$(date +%s)
if [ $STATUS -ne 0 ]; then
Expand Down

0 comments on commit dd3190d

Please sign in to comment.