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