only test ./gendocs on GNU/Linux

This helps with getting the tests running on OSX and other platforms.
This commit is contained in:
Hans-Christoph Steiner 2016-02-15 14:33:27 +01:00
parent 5f1e57c7e6
commit ff30bded21
1 changed files with 4 additions and 1 deletions

View File

@ -115,7 +115,10 @@ $fdroid --version
echo_header "build the TeX manual"
cd $WORKSPACE/docs
./gendocs.sh -o html --email admin@f-droid.org fdroid "F-Droid Server Manual"
# this is only ever generated officially on GNU/Linux
if [ `uname -s` == "Linux" ]; then
./gendocs.sh -o html --email admin@f-droid.org fdroid "F-Droid Server Manual"
fi
#------------------------------------------------------------------------------#