diff options
author | Ben Sima <ben@bsima.me> | 2021-10-17 12:33:33 -0400 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2021-11-26 13:47:39 -0500 |
commit | 03ec537b1ee14f3304e9951f810085a90c61c44d (patch) | |
tree | 479cb7eed350013c6d7e7c3eb2d2028a877dcfc4 /Biz/Bild | |
parent | f432b7057738cb5123c8e1b506a2a1199e71ee72 (diff) |
Fix ci script and pre-push
Diffstat (limited to 'Biz/Bild')
-rw-r--r-- | Biz/Bild/ShellHook.sh | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Biz/Bild/ShellHook.sh b/Biz/Bild/ShellHook.sh index d402755..625ac60 100644 --- a/Biz/Bild/ShellHook.sh +++ b/Biz/Bild/ShellHook.sh @@ -80,7 +80,10 @@ function sentry() { function run-ci() { lint **/* && bild --test **/* } -alias ci="time run-ci" + +function ci() { + time run-ci +} export PS1='\n$(r=$? && [ $r -eq 0 ] && printf "biz" || printf "%3.*s" $r $r)> ' |