blob: dd859083a5a458da2fe37a19f77bdb5d2d26a35f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#!/usr/bin/env bash
# TODO: convert to haskell
stuff=(${@})
if [[ ${#stuff[@]} -eq 0 ]]
then
stuff=(
Biz/Cloud.nix
Biz/Dev.nix
Biz/Que/Prod.nix
# Hero/Prod.nix # disabled bc herocomcis.app domain is broken
)
fi
lint ${stuff[@]} \
&& bild --test ${stuff[@]} \
&& for thing in ${stuff[@]}
do
push $thing
done
|