summaryrefslogtreecommitdiff
path: root/Biz/Ide/ship
diff options
context:
space:
mode:
authorBen Sima <ben@bsima.me>2021-06-14 10:39:17 -0400
committerBen Sima <ben@bsima.me>2021-11-26 13:47:36 -0500
commit9dcfb66c99909d1b51a76bdaf75ddbdb030fe270 (patch)
treed6c278aaec0416acb606d3ac2110f08c07c20b7c /Biz/Ide/ship
parentce1edea5da3318aea15dea0236aac421642a483e (diff)
Move commands and add ns function
Diffstat (limited to 'Biz/Ide/ship')
-rwxr-xr-xBiz/Ide/ship18
1 files changed, 18 insertions, 0 deletions
diff --git a/Biz/Ide/ship b/Biz/Ide/ship
new file mode 100755
index 0000000..9a17d99
--- /dev/null
+++ b/Biz/Ide/ship
@@ -0,0 +1,18 @@
+#!/usr/bin/env bash
+# TODO: convert to haskell
+stuff=(${@})
+if [[ ${#stuff[@]} -eq 0 ]]
+then
+ stuff=(
+ Biz/Cloud.nix
+ Biz/Dev.nix
+ Biz/Que/Prod.nix
+ # Hero/Prod.nix # disabled bc herocomcis.app domain is broken
+ )
+fi
+lint \
+ && bild --test ${stuff[@]} \
+ && for thing in ${stuff[@]}
+ do
+ push $thing
+ done