diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-12-20 21:54:55 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-12-20 21:54:55 +0100 |
commit | ada70f2c8b510299e73aad0d20f41ceabba53674 (patch) | |
tree | eeae9303f38396c1eccf39478b1e4bcc8333fde3 /Kernel | |
parent | 270beb516564b3a154a78523babb7d40910b1165 (diff) | |
download | serenity-ada70f2c8b510299e73aad0d20f41ceabba53674.zip |
Build: Abort makeall.sh without building a disk image if make fails
Diffstat (limited to 'Kernel')
-rwxr-xr-x | Kernel/makeall.sh | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Kernel/makeall.sh b/Kernel/makeall.sh index 5e8c6f5872..c81cc8cacc 100755 --- a/Kernel/makeall.sh +++ b/Kernel/makeall.sh @@ -14,6 +14,5 @@ sudo id make -C ../ && \ make -C ../ test && \ - make -C ../ install - -sudo -E PATH="$PATH" ./build-image-qemu.sh + make -C ../ install && + sudo -E PATH="$PATH" ./build-image-qemu.sh |