diff options
author | Jakub Jirutka <jakub@jirutka.cz> | 2017-06-11 12:24:59 +0200 |
---|---|---|
committer | Jakub Jirutka <jakub@jirutka.cz> | 2017-06-11 12:27:00 +0200 |
commit | fd8d3738fed6df6bf44c7d6f631dec54cfe2d1aa (patch) | |
tree | e1841a94febf15418336713e62189713990ac465 /test | |
parent | 4d1934f69b9ada9b2b913bcdd43cd2bc6b298ec9 (diff) | |
download | apk-tools-fd8d3738fed6df6bf44c7d6f631dec54cfe2d1aa.tar.gz apk-tools-fd8d3738fed6df6bf44c7d6f631dec54cfe2d1aa.tar.bz2 apk-tools-fd8d3738fed6df6bf44c7d6f631dec54cfe2d1aa.tar.xz apk-tools-fd8d3738fed6df6bf44c7d6f631dec54cfe2d1aa.zip |
test: fix test4.sh, script failure is non-fatal
This behaviour has been changed in: 7d5cd2c8a0052a7446515f90d3d0ea5cc2e93efe.
Diffstat (limited to 'test')
-rwxr-xr-x | test/test4.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test4.sh b/test/test4.sh index d08b45f..5a1c8ff 100755 --- a/test/test4.sh +++ b/test/test4.sh @@ -12,6 +12,6 @@ touch "$ROOT"/should-fail # check that pre-install was executed test -f $ROOT/pre-install -# check that package was not installed -! $APK info --root $ROOT -e test-c +# check that package was installed +$APK info --root $ROOT -e test-c |