From ff30bded21ddfd4e0742cec82c2e8e78dd28088f Mon Sep 17 00:00:00 2001 From: Hans-Christoph Steiner Date: Mon, 15 Feb 2016 14:33:27 +0100 Subject: [PATCH] only test ./gendocs on GNU/Linux This helps with getting the tests running on OSX and other platforms. --- tests/run-tests | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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 #------------------------------------------------------------------------------# -- 2.30.2