Skip to content

Commit 373e4b0

Browse files
committed
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
2 parents d92dbf1 + c4b4968 commit 373e4b0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ci/run-windows-build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ while true
5555
do
5656
LAST_STATUS=$STATUS
5757
STATUS=$(gfwci "action=status&buildId=$BUILD_ID")
58-
test "$STATUS" = "$LAST_STATUS" || printf "\nStatus: $STATUS "
58+
test "$STATUS" = "$LAST_STATUS" || printf "\nStatus: %s " "$STATUS"
5959
printf "."
6060

6161
case "$STATUS" in

0 commit comments

Comments
 (0)