summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Sima <ben@bsima.me>2022-07-18 09:51:41 -0400
committerBen Sima <ben@bsima.me>2022-07-18 09:51:41 -0400
commitf6fcc3a51e1914e0270d60d4c688a0f747716018 (patch)
treedf71498eabe5aaf756d35c77e4f4dfbf3c2957d7
parent545ec609e38517ce6bf68e47a48991ede15f61a4 (diff)
Change help to tips
"help" is a bash builtin, "tips" isn't the best but its just what I thought of first.
-rw-r--r--Biz/Bild/ShellHook.sh6
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
##