diff options
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 |