diff options
author | gramanas <anastasis.gramm2@gmail.com> | 2018-11-20 13:49:36 +0200 |
---|---|---|
committer | gramanas <anastasis.gramm2@gmail.com> | 2018-11-20 13:49:36 +0200 |
commit | da31bfd28301d63571eccb4abdd6b0a65b05c621 (patch) | |
tree | 33e0054d00927bd9dcfaabad41fdea53624c7b8e /test/restore.sh | |
parent | 78ee1c72c670a71bfd165448676fc65bff802916 (diff) | |
download | ck-da31bfd28301d63571eccb4abdd6b0a65b05c621.tar.gz ck-da31bfd28301d63571eccb4abdd6b0a65b05c621.tar.bz2 ck-da31bfd28301d63571eccb4abdd6b0a65b05c621.zip |
Add export action, fix util_is_link bug
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 2d60cb9..ba131e4 100644 --- a/test/restore.sh +++ b/test/restore.sh @@ -23,7 +23,7 @@ wait $! for i in $($BIN/ck -c $BIN list -p prog1); do if [[ ! -L "$i" ]]; then - err "Couldn't restore path $i" + err "Couldn't restore path $i from -p prog1" exit 1 fi done @@ -37,7 +37,7 @@ wait $! for i in $($BIN/ck -c $BIN list paths); do if [[ ! -L "$i" ]]; then - err "Couldn't restore path $i" + err "Couldn't restore path $i from all" exit 1 fi done |