diff options
author | Robin Obůrka <r.oburka@gmail.com> | 2016-07-23 22:36:54 +0200 |
---|---|---|
committer | Robin Obůrka <r.oburka@gmail.com> | 2016-07-24 16:34:02 +0200 |
commit | 66c23a73f578b07777718bfed845c1753a05963a (patch) | |
tree | 496daf42e503c1f39787bc8afd46eb92dd1e2e44 /backuper.sh | |
parent | Huge amount of fixes and improvements (diff) | |
download | backuper-66c23a73f578b07777718bfed845c1753a05963a.tar.xz |
Fix start of store command
Diffstat (limited to 'backuper.sh')
-rw-r--r-- | backuper.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/backuper.sh b/backuper.sh index 5c71822..f8ef7e1 100644 --- a/backuper.sh +++ b/backuper.sh @@ -153,8 +153,8 @@ add_stage() { } start_store() { - echo "$STORE" - $STORE < "$RUNDIR"/fifo_"$NEXTSTAGE" + STORE="$STORE < "$RUNDIR"/fifo_"$NEXTSTAGE"" + echo "$STORE" | sh -s } start_command() { |