1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-10 01:18:15 +03:00

build-docs: cleanup exit of the script

exit in the directory where it was called using pushd/popd.

Michael
This commit is contained in:
Michael Adam 2009-01-21 15:10:10 +01:00
parent 5e21fc3506
commit b319549f12

View File

@ -1,8 +1,14 @@
#!/bin/sh #!/bin/sh
_exit() {
echo $@
popd
exit 1
}
DOCSRCDIR=`dirname $0`/../docs-xml DOCSRCDIR=`dirname $0`/../docs-xml
cd $DOCSRCDIR || exit 1 pushd $DOCSRCDIR || exit 1
git clean -d -x -f git clean -d -x -f
autoconf && \ autoconf && \
@ -11,21 +17,23 @@ autoconf && \
make release make release
if [ $? != 0 ]; then if [ $? != 0 ]; then
echo "Docs build failed!" _exit "Docs build failed!"
exit 1
fi fi
mkdir ../docs mkdir -p ../docs
rsync -Ca --delete --exclude=.git output/ ../docs/ rsync -Ca --delete --exclude=.git output/ ../docs/
rsync -Ca --exclude=.svn registry ../docs/ rsync -Ca --exclude=.svn registry ../docs/
rsync -Ca --exclude=.svn archives/ ../docs/ rsync -Ca --exclude=.svn archives/ ../docs/
cd ../docs || exit 1 cd ../docs || _exit "Error changing dir to ${DOCSDIR}/../docs/"
/bin/rm -rf test.pdf Samba4*pdf htmldocs/Samba4* htmldocs/test /bin/rm -rf test.pdf Samba4*pdf htmldocs/Samba4* htmldocs/test
mv manpages-3 manpages mv manpages-3 manpages
mv htmldocs/manpages-3 htmldocs/manpages mv htmldocs/manpages-3 htmldocs/manpages
cd ../docs-xml || exit 1 cd ../docs-xml || _exit "Error changing dir to ${DOCSDIR}/../docs-xml/"
make distclean make distclean
echo "Success"
popd
exit exit