summaryrefslogtreecommitdiff
path: root/mk
diff options
context:
space:
mode:
Diffstat (limited to 'mk')
-rwxr-xr-xmk5
1 files changed, 3 insertions, 2 deletions
diff --git a/mk b/mk
index 1a7b896f..af29f1e2 100755
--- a/mk
+++ b/mk
@@ -24,13 +24,14 @@ main()
case "$cmd" in
version) printf "%s\nWebsite: %s\n" "$relname" "$projectsite" ;;
release|download|inject) $cmd "$@" ;;
- -*) return 1 ;;
+ -*) return 0 ;;
*) err "bad command" ;;
esac
set -u -e # some commands disable them. turn them on!
+ return 1
}
-main "$@" && exit 0
+main "$@" || exit 0
. "include/git.sh"
. "include/tree.sh"