mirror of
https://github.com/vichan-devel/vichan.git
synced 2024-12-11 23:36:02 +01:00
12 lines
231 B
Bash
Executable File
12 lines
231 B
Bash
Executable File
#!/bin/bash
|
|
cd ..
|
|
mkdir docs/doxygen
|
|
rm -Rf docs/doxygen/*
|
|
doxygen 1>docs/doxygen/info.log 2>docs/doxygen/errors.log
|
|
if [ "$?" != 0 ]; then
|
|
cat docs/doxygen/errors.log
|
|
exit
|
|
fi
|
|
cd docs
|
|
tar czf doxygen.tgz doxygen
|