aboutsummaryrefslogtreecommitdiff
path: root/run
diff options
context:
space:
mode:
authorMarvin Borner2020-04-02 13:01:08 +0200
committerMarvin Borner2020-04-02 13:01:08 +0200
commitf7d4c8891e5ef64d13567845b2bc02f31152c323 (patch)
tree54f6fa103260a64f010b6d0e01255dd4f4e89aab /run
parentce13b28b90e8f7d8083658e083831c6528847099 (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-xrun4
1 files changed, 3 insertions, 1 deletions
diff --git a/run b/run
index a3f0beb..736e3ec 100755
--- a/run
+++ b/run
@@ -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
}