diff options
author | EuAndreh <eu@euandre.org> | 2019-06-11 18:32:28 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2019-06-11 18:32:28 -0300 |
commit | d8e8457e05275d741d3b81dc4552bb6ae75c53f0 (patch) | |
tree | b004e7824b4d18c718fa7cbe872055f026e58b61 /scripts | |
parent | WIP: add README.org (diff) | |
download | server-d8e8457e05275d741d3b81dc4552bb6ae75c53f0.tar.gz server-d8e8457e05275d741d3b81dc4552bb6ae75c53f0.tar.xz |
Don't fail when =terraform apply= is a noop
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/ci/deploy.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/ci/deploy.sh b/scripts/ci/deploy.sh index 8d514ba..f742b38 100755 --- a/scripts/ci/deploy.sh +++ b/scripts/ci/deploy.sh @@ -89,7 +89,7 @@ echo "Done." echo "Storing .tfstate file..." pushd ../vps-state/ git add secrets/terraform.tfstate secrets/terraform.tfstate.backup -git commit -m "CI: update Terraform .tfstate files for CI run ${VPS_COMMIT_SHA}" +git commit -m "CI: update Terraform .tfstate files for CI run ${VPS_COMMIT_SHA}" --allow-empty git push origin master popd echo "Done." |