diff options
Diffstat (limited to 'run')
-rwxr-xr-x | run | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -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 |