aboutsummaryrefslogtreecommitdiff
path: root/aux/ci/git-post-receive.sh
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2021-07-27 11:31:02 -0300
committerEuAndreh <eu@euandre.org>2021-07-27 11:58:44 -0300
commit9e84b309cd0807ff029660d2f42a2397334efb2b (patch)
treed10f193190726891ff739ecb6655359166947bb5 /aux/ci/git-post-receive.sh
parentTODOs.md: Add #task-1f103822-c865-254c-f6b6-4968f2fb473e (diff)
downloadgit-permalink-9e84b309cd0807ff029660d2f42a2397334efb2b.tar.gz
git-permalink-9e84b309cd0807ff029660d2f42a2397334efb2b.tar.xz
aux/: Stick to 80 columns
Diffstat (limited to 'aux/ci/git-post-receive.sh')
-rwxr-xr-xaux/ci/git-post-receive.sh3
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