diff options
author | Ben Sima <ben@bsima.me> | 2022-07-18 09:51:41 -0400 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2022-07-18 09:51:41 -0400 |
commit | f6fcc3a51e1914e0270d60d4c688a0f747716018 (patch) | |
tree | df71498eabe5aaf756d35c77e4f4dfbf3c2957d7 /Biz/Bild | |
parent | 545ec609e38517ce6bf68e47a48991ede15f61a4 (diff) |
Change help to tips
"help" is a bash builtin, "tips" isn't the best but its just what I thought of
first.
Diffstat (limited to 'Biz/Bild')
-rw-r--r-- | Biz/Bild/ShellHook.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Biz/Bild/ShellHook.sh b/Biz/Bild/ShellHook.sh index 4ab1920..c2e191a 100644 --- a/Biz/Bild/ShellHook.sh +++ b/Biz/Bild/ShellHook.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash ## - function help() { + function tips() { echo "" echo "bizdev" | figlet | lolcat echo "" @@ -8,7 +8,7 @@ echo " repl start a repl" echo " ci run all builds and tests" echo " deps manage dependencies with niv" - echo " help show this message" + echo " tips show this message" echo " lint auto-lint all changed files" echo " push send a namespace to the cloud" echo " ship lint, bild, and push one (or all) namespace(s)" @@ -28,5 +28,5 @@ alias ci="$BIZ_ROOT/Biz/Ide/hooks/pre-push" # # - help + tips ## |