2019-08-10 12:43:48 +01:00
|
|
|
#!/usr/bin/env nix-shell
|
|
|
|
#! nix-shell ./shell.nix -i bash
|
|
|
|
set -euo pipefail
|
|
|
|
|
|
|
|
mkdir -p state
|
2020-01-12 14:03:14 +01:00
|
|
|
|
|
|
|
if [ $(nixops list --state "$NIXOPS_STATE" | grep -c "$NIXOPS_DEPLOYMENT") -eq 0 ]; then
|
|
|
|
nixops create ./deployment.nix --deployment "$NIXOPS_DEPLOYMENT" --state "$NIXOPS_STATE"
|
2019-08-10 12:43:48 +01:00
|
|
|
fi
|
|
|
|
|
2020-01-12 14:03:14 +01:00
|
|
|
nixops deploy "$@"
|