diff options
Diffstat (limited to 'Biz/Bild/ShellHook.sh')
-rw-r--r-- | Biz/Bild/ShellHook.sh | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Biz/Bild/ShellHook.sh b/Biz/Bild/ShellHook.sh index b71d894..85694ec 100644 --- a/Biz/Bild/ShellHook.sh +++ b/Biz/Bild/ShellHook.sh @@ -64,7 +64,6 @@ function push() { # TODO: convert to haskell function ship() { - lint stuff=(${@}) if [[ ${#stuff[@]} -eq 0 ]] then @@ -75,11 +74,12 @@ function ship() { # Hero/Prod.nix # disabled bc herocomcis.app domain is broken ) fi - bild --test ${stuff[@]} && \ - for thing in ${stuff[@]} - do - push $thing - done + lint \ + && bild --test ${stuff[@]} \ + && for thing in ${stuff[@]} + do + push $thing + done } function run-sentry() { |