diff options
author | Marvin Borner | 2020-04-02 13:01:08 +0200 |
---|---|---|
committer | Marvin Borner | 2020-04-02 13:01:08 +0200 |
commit | f7d4c8891e5ef64d13567845b2bc02f31152c323 (patch) | |
tree | 54f6fa103260a64f010b6d0e01255dd4f4e89aab /run | |
parent | ce13b28b90e8f7d8083658e083831c6528847099 (diff) |
Small fixes in the run executable
The run script is now able to run from any location && exits when the
installation test failed
Diffstat (limited to 'run')
-rwxr-xr-x | run | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -1,5 +1,7 @@ #!/usr/bin/env sh +cd "$(dirname "$0")" || exit + mode="${1}" network="rtl8139" @@ -144,7 +146,7 @@ make_image() { end=$(date +%s.%N) cat install.log printf "[LOG END]\n\n" - tail install.log | grep -q "Installation successful!" && echo Booted and installed within "$(echo "$end - $start" | bc -l)" seconds || echo Installation failed! + tail install.log | grep -q "Installation successful!" && echo Booted and installed within "$(echo "$end - $start" | bc -l)" seconds || echo Installation failed! && exit rm install.log } |