aboutsummaryrefslogtreecommitdiffstats
path: root/test/05_restore
diff options
context:
space:
mode:
authorgramanas <anastasis.gramm2@gmail.com>2018-11-16 18:05:57 +0200
committergramanas <anastasis.gramm2@gmail.com>2018-11-16 18:05:57 +0200
commit8eb4df24eb30353bea82268440396e50ed8b1bbc (patch)
treec885ab94952315f64bd596512cd23d0ef5509b3e /test/05_restore
parent2919a5e2c1d33d170bffc93dfeaa6292b9fa3dca (diff)
downloadck-8eb4df24eb30353bea82268440396e50ed8b1bbc.tar.gz
ck-8eb4df24eb30353bea82268440396e50ed8b1bbc.tar.bz2
ck-8eb4df24eb30353bea82268440396e50ed8b1bbc.zip
Fix bugs in test-ck and simplify clparser
Diffstat (limited to 'test/05_restore')
-rw-r--r--test/05_restore4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/05_restore b/test/05_restore
index 013e252..2d60cb9 100644
--- a/test/05_restore
+++ b/test/05_restore
@@ -15,7 +15,7 @@ add_config prog2 $path3
add_config prog2 $path4
# delete prog1 links
-rm $path1 $path2
+rm "$path1" "$path2"
# restore them
exec $BIN/ck -c $BIN restore -p prog1 >&${V} &
@@ -29,7 +29,7 @@ for i in $($BIN/ck -c $BIN list -p prog1); do
done
## delete all links
-rm $path1 $path2 $path3 $path4
+rm "$path1" "$path2" "$path3" "$path4"
# restore all
exec $BIN/ck -c $BIN restore all >&${V} &