blob: 7b13332b52687eb0ff9390a3b2460a52d77376dd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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
|