1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00
samba-mirror/release-scripts/build-docs
Andreas Schneider e4371a4c3b release-script: Fix shellcheck errors
./release-scripts/build-docs:4:7: error: Double quote array expansions
to avoid re-splitting elements. [SC2068]

Same error for the other scripts.

Signed-off-by: Andreas Schneider <asn@samba.org>
Reviewed-by: Pavel Filipenský <pfilipensky@samba.org>

Autobuild-User(master): Pavel Filipensky <pfilipensky@samba.org>
Autobuild-Date(master): Wed Aug 17 11:03:54 UTC 2022 on sn-devel-184
2022-08-17 11:03:54 +00:00

40 lines
773 B
Bash
Executable File

#!/bin/sh
_exit()
{
echo "$@"
popd
exit 1
}
DOCSRCDIR=$(dirname $0)/../docs-xml
pushd $DOCSRCDIR || exit 1
git clean -d -x -f
export XML_CATALOG_FILES="file:///etc/xml/catalog file://$(pwd)/build/catalog.xml"
autoconf &&
./configure --with-papersize=letter &&
make smbdotconf/parameters.all.xml &&
make release
if [ $? != 0 ]; then
_exit "Docs build failed!"
fi
mkdir -p ../docs
rsync -Ca --delete --exclude=.git output/ ../docs/
rsync -Ca --exclude=.svn registry ../docs/
rsync -Ca --exclude=.svn archives/ ../docs/
cd ../docs || _exit "Error changing dir to ${DOCSDIR}/../docs/"
/bin/rm -rf test.pdf Samba4*pdf htmldocs/Samba4* htmldocs/test
cd ../docs-xml || _exit "Error changing dir to ${DOCSDIR}/../docs-xml/"
make distclean
echo "Success"
popd
exit