diff options
author | gramanas <anastasis.gramm2@gmail.com> | 2018-11-20 20:21:29 +0200 |
---|---|---|
committer | gramanas <anastasis.gramm2@gmail.com> | 2018-11-20 20:21:29 +0200 |
commit | bd85acf6a408674bcdcb5116963fe4fea2247280 (patch) | |
tree | 4318ff7e1331b16cb9152f45601eedb89b30fb92 /test/restore.sh | |
parent | da31bfd28301d63571eccb4abdd6b0a65b05c621 (diff) | |
download | ck-bd85acf6a408674bcdcb5116963fe4fea2247280.tar.gz ck-bd85acf6a408674bcdcb5116963fe4fea2247280.tar.bz2 ck-bd85acf6a408674bcdcb5116963fe4fea2247280.zip |
Simplyfy restore arguments
Diffstat (limited to 'test/restore.sh')
-rw-r--r-- | test/restore.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/restore.sh b/test/restore.sh index ba131e4..3730fb2 100644 --- a/test/restore.sh +++ b/test/restore.sh @@ -18,7 +18,7 @@ add_config prog2 $path4 rm "$path1" "$path2" # restore them -exec $BIN/ck -c $BIN restore -p prog1 >&${V} & +exec $BIN/ck -c $BIN restore prog1 >&${V} & wait $! for i in $($BIN/ck -c $BIN list -p prog1); do @@ -32,7 +32,7 @@ done rm "$path1" "$path2" "$path3" "$path4" # restore all -exec $BIN/ck -c $BIN restore all >&${V} & +exec $BIN/ck -c $BIN restore --all >&${V} & wait $! for i in $($BIN/ck -c $BIN list paths); do |