aboutsummaryrefslogtreecommitdiff
path: root/run
diff options
context:
space:
mode:
authorMarvin Borner2020-05-05 18:20:25 +0200
committerMarvin Borner2020-05-05 18:20:25 +0200
commit476af3bcc2f2a072d32db0523c382af99a9d2b5b (patch)
tree6c0acf32c0c0ee6063b7fc96d179f14744082353 /run
parent2832a529b7f16799db801823fee0ebfd2aa77168 (diff)
Added default run option
Diffstat (limited to 'run')
-rwxr-xr-xrun8
1 files changed, 7 insertions, 1 deletions
diff --git a/run b/run
index 10aa8e2..c2d83df 100755
--- a/run
+++ b/run
@@ -224,7 +224,13 @@ elif [ "${mode}" = "tidy" ]; then
elif [ "${mode}" = "font" ]; then
make_font
make_tidy
-else
+elif [ "${mode}" = "help" ]; then
echo "Please use the following syntax:"
+ echo "The default option is 'test'"
echo "./run {cross | build | clean | test | debug | image | sync | tidy | font} [-y]"
+else # TODO: Prevent code duplication in build script via functions?
+ make_cross
+ make_clean
+ make_build
+ make_test
fi