Skip to content

Commit b3e0c8e

Browse files
committed
build: Enable docs build in update docs script
Commit 59263bb ("build: Use boolean type for docs-build default") introduced a command line option to enable docs build. Let's enable this in the update docs script. Signed-off-by: Daniel Wagner <dwagner@suse.de>
1 parent 8d9508c commit b3e0c8e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

update-docs.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
BUILDDIR="$(mktemp -d)"
44
trap 'rm -rf -- $BUILDDIR' EXIT
55

6-
meson $BUILDDIR -Ddocs=all
6+
meson $BUILDDIR -Ddocs=all -Ddocs-build=true
77
ninja -C $BUILDDIR
88
find $BUILDDIR/Documentation -maxdepth 1 \
99
\( -name '*.1' -o -name '*.html' \) \

0 commit comments

Comments
 (0)