ports/devel/py-delfick_error/files/patch-docs_build.sh
Mathieu Arnold a0881d00eb Fix a "build.sh: [[: not found" error message.
(does not fix the build, though.)

Sponsored by:	Absolight
2016-04-11 12:33:42 +00:00

11 lines
250 B
Bash

--- docs/build.sh.orig 2015-10-17 23:21:49 UTC
+++ docs/build.sh
@@ -11,7 +11,7 @@ for ARG in $*; do
done
# use with --clean if you change anything in support
-if [[ $1 = "--clean" ]]; then
+if [ "$1" = "--clean" ]; then
rm -rf _build
fi