mirror of
https://gh.wpcy.net/https://github.com/rilustrisimo/freescout-support.git
synced 2026-05-01 14:52:23 +08:00
11 lines
220 B
Bash
Executable file
11 lines
220 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
|