Change line ending

This commit is contained in:
Milo Yip 2014-07-08 01:18:38 +08:00
parent e5cd989d7f
commit 4720d4a2dd

View File

@ -1,6 +1,6 @@
#!/bin/sh #!/bin/sh
if ["${config}"="release64" && "$CC"="clang"] then exit 0 fi
if [ "${config}" == "release64" ] && [ "$CC" == "clang" ]; then
cd /tmp cd /tmp
git clone https://github.com/doxygen/doxygen.git git clone https://github.com/doxygen/doxygen.git
cd doxygen cd doxygen
@ -14,3 +14,4 @@ sudo make install
cd "${TRAVIS_BUILD_DIR}" cd "${TRAVIS_BUILD_DIR}"
doxygen build/Doxyfile doxygen build/Doxyfile
fi