diff options
author | TheMightyV <themightyv@protonmail.com> | 2022-01-04 22:59:56 +0100 |
---|---|---|
committer | TheMightyV <themightyv@protonmail.com> | 2022-01-04 22:59:56 +0100 |
commit | 8a980539a3fc71834d97394d6a457a194bce9f80 (patch) | |
tree | c33f54ee2f5433dc2b0dd3a783cd4ab6b702292c /backends/bup.sh | |
parent | cba2d63889fa3ae640d213ab2c15f99d3d941967 (diff) | |
download | minecraft-server-tools-8a980539a3fc71834d97394d6a457a194bce9f80.tar.gz |
fixed wrong hanling of provided backup_dir in server_restore
made more outputs with VERBOSE=0
Diffstat (limited to 'backends/bup.sh')
-rw-r--r-- | backends/bup.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backends/bup.sh b/backends/bup.sh index 50c2b86..cae36fe 100644 --- a/backends/bup.sh +++ b/backends/bup.sh @@ -31,7 +31,7 @@ function bup_create_backup() { local retcode=1 for backup_dir in ${BACKUP_DIRS[*]} do - echo_debug "bup: backing up to \"$backup_dir\"" + echo "bup: backing up to \"$backup_dir\"" # try to save to remote bup -d "$(bup_local)" save -r "$backup_dir" -n "$BACKUP_NAME" "$WORLD_NAME" local status=$? |