blob: 9a17d9962b8b0be4f6ebe2f2f12d4a0c04ab74fb (
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 \
&& bild --test ${stuff[@]} \
&& for thing in ${stuff[@]}
do
push $thing
done
|