From: Hans-Christoph Steiner Date: Mon, 15 Feb 2016 13:33:27 +0000 (+0100) Subject: only test ./gendocs on GNU/Linux X-Git-Tag: 0.6.0~5^2~7 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;ds=sidebyside;h=ff30bded21ddfd4e0742cec82c2e8e78dd28088f;p=fdroidserver.git only test ./gendocs on GNU/Linux This helps with getting the tests running on OSX and other platforms. --- diff --git a/tests/run-tests b/tests/run-tests index 7629f431..f7acd069 100755 --- a/tests/run-tests +++ b/tests/run-tests @@ -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 #------------------------------------------------------------------------------#