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,16 +1,17 @@
#!/bin/sh
if ["${config}"="release64" && "$CC"="clang"] then exit 0 fi
cd /tmp
git clone https://github.com/doxygen/doxygen.git
cd doxygen
./configure
make
make distclean
git pull
./configure
make
sudo make install
if [ "${config}" == "release64" ] && [ "$CC" == "clang" ]; then
cd /tmp
git clone https://github.com/doxygen/doxygen.git
cd doxygen
./configure
make
make distclean
git pull
./configure
make
sudo make install
cd "${TRAVIS_BUILD_DIR}"
doxygen build/Doxyfile
cd "${TRAVIS_BUILD_DIR}"
doxygen build/Doxyfile
fi