blob: 5330ec44d919ff66a5ac6a495ca9cce1bdb24afe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#!/usr/bin/env bash
set -ex
lint
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
|