Remover requirement of passing args to help-line

This commit is contained in:
2021-12-21 11:19:51 -08:00
parent 4c54a238d8
commit b62ef700f4
4 changed files with 15 additions and 14 deletions

4
go
View File

@@ -2,7 +2,7 @@
set -euo pipefail
⚡test() {
_help-line "Run all the tests" "$@"
_help-line "Run all the tests"
exit=0
for test in test/test*; do
bash $test || exit=1
@@ -11,7 +11,7 @@ set -euo pipefail
}
deploy() {
_help-line "Publish ⚡️" "$@"
_help-line "Publish ⚡️"
scp ⚡ v@commandcenter.ofvlad.xyz:/srv/http/apps.ofvlad.xyz/⚡
}