diff options
author | Ben Sima <ben@bsima.me> | 2020-10-12 23:42:22 -0400 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2020-10-12 23:42:22 -0400 |
commit | 170ca39ccee2826f7623858ad4426071fd3a0d61 (patch) | |
tree | ed46680a3810448c0945c48d432429f8f8d4a5b9 /nix/shellHook.sh | |
parent | d58f671d8846bd8f5b6507fb7b614a1150fbfe4a (diff) |
pie prototype
Diffstat (limited to 'nix/shellHook.sh')
-rw-r--r-- | nix/shellHook.sh | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/nix/shellHook.sh b/nix/shellHook.sh index d1cfaf1..8c8cecc 100644 --- a/nix/shellHook.sh +++ b/nix/shellHook.sh @@ -8,6 +8,7 @@ function help() { echo " help show this message" echo " hero compile and start a dev server for herocomics.app" echo " lint auto-lint all changed files" + echo " pie product improvement engine" echo " push send a namespace to the cloud" echo " ship lint, bild, and push one (or all) namespace(s)" } @@ -47,6 +48,11 @@ function lint() { alias lint=$BIZ_ROOT/Biz/lint.py } + +function pie() { + runghc Biz.Pie $@ +} + # TODO: convert to haskell function push() { prefix=$(echo $PWD | sed -e "s|^$BIZ_ROOT/*||g" -e "s|/|.|g") |