8000 Fix version check on travis · lineCode/docopt.cpp@d36e13c · GitHub
[go: up one dir, main page]

Skip to content

Commit d36e13c

Browse files
committed
Fix version check on travis
'sh g++-5 --version || true' will fail as sh try to open a file named g++-5
1 parent 43ff91d commit d36e13c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ before_install:
6363
fi
6464
- if [[ "${STDLIB}" == "libc++" ]]; then CMAKE_CXX_FLAGS+=" -stdlib=libc++"; fi
6565

66-
- sh ${COMPILER} --version || true
66+
- ${COMPILER} --version
6767

6868
before_script:
6969
- rm -rf build/

0 commit comments

Comments
 (0)
0