diff options
author | EuAndreh <eu@euandre.org> | 2021-09-03 20:39:10 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2021-09-03 20:39:10 -0300 |
commit | 51a9914dc8ec02b053a5594b7478b4d68a750672 (patch) | |
tree | 8b3143830dc5658f3848328facded29e4c6cb52c /aux/ci/git-post-receive.sh | |
parent | WIP reactivate nixvps with Terraform and nixos-rebuild on Vultr (diff) | |
download | server-51a9914dc8ec02b053a5594b7478b4d68a750672.tar.gz server-51a9914dc8ec02b053a5594b7478b4d68a750672.tar.xz |
aux/: Update
Diffstat (limited to 'aux/ci/git-post-receive.sh')
-rwxr-xr-x | aux/ci/git-post-receive.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/aux/ci/git-post-receive.sh b/aux/ci/git-post-receive.sh index 426bff3..92bba73 100755 --- a/aux/ci/git-post-receive.sh +++ b/aux/ci/git-post-receive.sh @@ -4,7 +4,8 @@ set -eu for n in $(seq 0 $((GIT_PUSH_OPTION_COUNT - 1))); do opt="$(eval "echo \$GIT_PUSH_OPTION_$n")" if [ "$opt" = skip-ci ] || [ "$opt" = ci-skip ]; then - printf "\n'%s' option detected, not running ci-build.sh\n\n" "$opt" + printf "\n'%s' option detected, not running ci-build.sh\n\n" \ + "$opt" exit 0 fi done |