Commit 4720d4a2 authored by Milo Yip's avatar Milo Yip

Change line ending

parent e5cd989d
#!/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
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment