diff options
author | Junio C Hamano <gitster@pobox.com> | 2017-05-01 14:14:44 +0900 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2017-05-01 14:14:44 +0900 |
commit | 373e4b091d954f619c0b14f99db536de97ce669e (patch) | |
tree | 7c47a5ecd9db0150b431fd8981b31a49de10a885 | |
parent | Merge branch 'jk/submodule-init-segv-fix' (diff) | |
parent | travis-ci: printf $STATUS as string (diff) | |
download | tgif-373e4b091d954f619c0b14f99db536de97ce669e.tar.xz |
Merge branch 'ls/travis-win-fix-status'
Relaying status from Windows build by Travis CI was done with an
unsafe invocation of printf.
* ls/travis-win-fix-status:
travis-ci: printf $STATUS as string
-rwxr-xr-x | ci/run-windows-build.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ci/run-windows-build.sh b/ci/run-windows-build.sh index 4e3a50b60e..e043440799 100755 --- a/ci/run-windows-build.sh +++ b/ci/run-windows-build.sh @@ -55,7 +55,7 @@ while true do LAST_STATUS=$STATUS STATUS=$(gfwci "action=status&buildId=$BUILD_ID") - test "$STATUS" = "$LAST_STATUS" || printf "\nStatus: $STATUS " + test "$STATUS" = "$LAST_STATUS" || printf "\nStatus: %s " "$STATUS" printf "." case "$STATUS" in |