diff options
author | Robin Obůrka <r.oburka@gmail.com> | 2016-08-01 22:23:36 +0200 |
---|---|---|
committer | Robin Obůrka <r.oburka@gmail.com> | 2016-08-01 22:23:36 +0200 |
commit | 2dffc26d2fb3067b74626aaeb29420c73ee68c16 (patch) | |
tree | 6b3a8606652dda5daf89e9c27e88854f3baec0bc /backuper.sh | |
parent | Enable run command only after backup specification (diff) | |
download | backuper-2dffc26d2fb3067b74626aaeb29420c73ee68c16.tar.xz |
Fix bug in tar usage
Diffstat (limited to 'backuper.sh')
-rw-r--r-- | backuper.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backuper.sh b/backuper.sh index a354c06..775b38a 100644 --- a/backuper.sh +++ b/backuper.sh @@ -275,7 +275,7 @@ start_command() { echo "$COMMAND" | /usr/bin/time -f "$(time_fmt "Backup took")" $REMOTE $GENERATE sh -s > "$RUNDIR"/fifo_0 else ## Exclude keep without quotes - /usr/bin/time -f "$(time_fmt "Backup took")" $REMOTE $GENERATE tar c --preserve-permissions $EXCLUDE "$PLACES" > "$RUNDIR"/fifo_0 + /usr/bin/time -f "$(time_fmt "Backup took")" $REMOTE $GENERATE tar c --preserve-permissions $EXCLUDE $PLACES > "$RUNDIR"/fifo_0 fi } |