Skip to content

Commit

Permalink
ci: replace '| head -n1' with 'git log -1' due to broken pipe breakin…
Browse files Browse the repository at this point in the history
…g -o pipefail
  • Loading branch information
IgorMinar committed Mar 5, 2017
1 parent 3299030 commit 728fe47
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/ci/publish-build-artifacts.sh
Expand Up @@ -117,7 +117,7 @@ function publishPackages {
fi
SHA=`git rev-parse HEAD`
SHORT_SHA=`git rev-parse --short HEAD`
COMMIT_MSG=`git log --oneline | head -n1`
COMMIT_MSG=`git log --oneline -1`
COMMITTER_USER_NAME=`git --no-pager show -s --format='%cN' HEAD`
COMMITTER_USER_EMAIL=`git --no-pager show -s --format='%cE' HEAD`
LATEST_TAG=`getLatestTag`
Expand Down

0 comments on commit 728fe47

Please sign in to comment.