From 3df5b60ca19e6a892d6da2684ba1ea59d011e5d1 Mon Sep 17 00:00:00 2001 From: Jim Derry Date: Sun, 8 Mar 2015 13:48:02 +0800 Subject: [PATCH] Bash doesn't like the extra space after the slash. --- build/documentation/build_docs.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/documentation/build_docs.sh b/build/documentation/build_docs.sh index 0c4c500..c38547b 100755 --- a/build/documentation/build_docs.sh +++ b/build/documentation/build_docs.sh @@ -121,7 +121,7 @@ if [ "$BUILD_API" -eq 1 ]; then # - overwrites some vars but appending some to config an end # - which are then passed to doxygen as stdin (instead of the path to a config.file) ( cat "$DOXY_CFG"; \ - echo "PROJECT_NUMBER=$TIDY_VERSION"; \ + echo "PROJECT_NUMBER=$TIDY_VERSION"; \ echo "GENERATE_TAGFILE=$OUTP_DIR/tidylib_api/tidy.tags"; \ echo "HTML_EXTRA_FILES= ./examples/tidy5.help.txt ./examples/tidy5.config.txt"; ) \ | doxygen - > /dev/null