diff options
author | Ben Sima <ben@bsima.me> | 2020-04-15 12:54:33 -0700 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2020-04-15 12:55:03 -0700 |
commit | 98734d2406ee559abf497cc95531980702f162ae (patch) | |
tree | b464b53a84332257b56934af00b73037a22f4ec3 /turnkey | |
parent | adc1052ce966d6243ee18198c042c40933fca945 (diff) |
Rename and rewrite push-all to turnkey
This script will eventually do all of the testing and linting and such
as well.
Diffstat (limited to 'turnkey')
-rwxr-xr-x | turnkey | 16 |
1 files changed, 16 insertions, 0 deletions
@@ -0,0 +1,16 @@ +#!/usr/bin/env bash +set -ex +stuff=( + Biz.Cloud + Biz.Dev + Que.Prod + Hero.Prod +) +for thing in ${stuff[@]} +do + bild $thing +done +for thing in ${stuff[@]} +do + push $thing +done |