From 41df5e4d24b2729dcc79661c8c94f0a9cceda1b9 Mon Sep 17 00:00:00 2001 From: squidfunk Date: Thu, 16 Mar 2017 18:52:36 +0100 Subject: [PATCH] Fixed suffix for commit message .githooks --- .githooks/commit-msg/skip.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.githooks/commit-msg/skip.sh b/.githooks/commit-msg/skip.sh index 36059f92a..3f9412a0c 100755 --- a/.githooks/commit-msg/skip.sh +++ b/.githooks/commit-msg/skip.sh @@ -47,8 +47,8 @@ if [[ ${#FILES[@]} -gt 0 ]]; then exit fi -# Prefix the commit message with "[skip ci]" -sed -i '' '1s/$/ [skip ci]/' "$1" +# Don't build this commit +sed -i '' '1s/$/ [ci skip]/' "$1" # We're good exit 0