diff options
author | EuAndreh <eu@euandre.org> | 2021-06-11 22:39:20 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2021-06-11 22:39:20 -0300 |
commit | 3f9bd994223f78b7ec4ab80820d593066f27aa56 (patch) | |
tree | d656f616bf96354bc786ad6f8b9f74cb92d8561e /aux/ci/git-post-receive.sh | |
parent | aux/workflow/public.sh: Mark as executable (diff) | |
download | package-repository-3f9bd994223f78b7ec4ab80820d593066f27aa56.tar.gz package-repository-3f9bd994223f78b7ec4ab80820d593066f27aa56.tar.xz |
Update files under aux/
Diffstat (limited to '')
-rwxr-xr-x | aux/ci/git-post-receive.sh | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/aux/ci/git-post-receive.sh b/aux/ci/git-post-receive.sh index f8986ed..ee8075f 100755 --- a/aux/ci/git-post-receive.sh +++ b/aux/ci/git-post-receive.sh @@ -2,11 +2,11 @@ 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" - exit 0 - fi + 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" + exit 0 + fi done PACKAGE="$(basename "$PWD" | cut -d. -f1)" # remove .git suffix |