diff options
author | TheMightyV <themightyv@protonmail.com> | 2022-01-05 19:58:46 +0100 |
---|---|---|
committer | TheMightyV <themightyv@protonmail.com> | 2022-01-05 19:58:46 +0100 |
commit | 1ba766d277fc35435ca80b9fcfa28c57468f7bce (patch) | |
tree | 5a625c9555526febef830a36dc2f7a18ea9b25b5 /backends | |
parent | 9a80e613c6838b5c73d2e18237c6547fa8ec3dfc (diff) | |
download | minecraft-server-tools-1ba766d277fc35435ca80b9fcfa28c57468f7bce.tar.gz |
tests always verbose
tests block spacing
tests show list of backups
fixed bad variable in bup_ls_all
Diffstat (limited to 'backends')
-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 cae36fe..d1250de 100644 --- a/backends/bup.sh +++ b/backends/bup.sh @@ -66,7 +66,7 @@ function bup_ls_dir() { function bup_ls_all() { for backup_dir in ${BACKUP_DIRS[*]} do - echo "bup: backups in \"$BACKUP_DIR\":" + echo "bup: backups in \"$backup_dir\":" bup -d "$(bup_local)" ls -r "$backup_dir" --human-readable -l "$BACKUP_NAME" done } |