From dd3190dacc085bc266dc20f49eaedc6944a05721 Mon Sep 17 00:00:00 2001 From: forevermatt Date: Wed, 29 May 2024 11:46:59 -0400 Subject: [PATCH] Use new name for `--no-progress` flag to b2 > The '--noProgress' argument is deprecated. Use '--no-progress' instead. --- application/backup.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/backup.sh b/application/backup.sh index 9426646..e901b73 100755 --- a/application/backup.sh +++ b/application/backup.sh @@ -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