diff options
author | Jakub Jirutka <jakub@jirutka.cz> | 2017-06-10 15:09:27 +0200 |
---|---|---|
committer | Jakub Jirutka <jakub@jirutka.cz> | 2017-06-11 12:14:41 +0200 |
commit | 12c71704d063ce68bf19b05722c981272df1ec3c (patch) | |
tree | aa06d4a1eed5942e4459e4d6bd9a770839db3b6c /test/test6.sh | |
parent | 419e51638c715d8fdfa4fab1ad40bec66deb92b9 (diff) | |
download | apk-tools-12c71704d063ce68bf19b05722c981272df1ec3c.tar.gz apk-tools-12c71704d063ce68bf19b05722c981272df1ec3c.tar.bz2 apk-tools-12c71704d063ce68bf19b05722c981272df1ec3c.tar.xz apk-tools-12c71704d063ce68bf19b05722c981272df1ec3c.zip |
test: fix test6.sh, vmlinuz and initramfs are not symlinks
Diffstat (limited to 'test/test6.sh')
-rwxr-xr-x | test/test6.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test6.sh b/test/test6.sh index 1a4ec77..e480f7c 100755 --- a/test/test6.sh +++ b/test/test6.sh @@ -5,7 +5,7 @@ $APK add --root $ROOT --initdb -U --repository $PWD/repo1 \ --repository $SYSREPO alpine-keys linux-vanilla -test -L "$ROOT"/boot/vmlinuz +test -e "$ROOT"/boot/vmlinuz -test -L "$ROOT"/boot/initramfs-vanilla +test -e "$ROOT"/boot/initramfs-vanilla |