X-Git-Url: http://git.samba.org/samba.git/?a=blobdiff_plain;f=release-scripts%2Fbuild-docs;fp=release-scripts%2Fbuild-docs;h=5da641ac691edb9698ad3259824175f6822edcaa;hb=b319549f129b1c79afc9bfd4a84f2730b96d69a3;hp=bde87f49bdac26afe69cf9b8d4b6e7260dcc281c;hpb=5e21fc3506f2ba7b1135b1acad2697dfb86b5df0;p=kai%2Fsamba-autobuild%2F.git diff --git a/release-scripts/build-docs b/release-scripts/build-docs index bde87f49bda..5da641ac691 100755 --- a/release-scripts/build-docs +++ b/release-scripts/build-docs @@ -1,8 +1,14 @@ #!/bin/sh +_exit() { + echo $@ + popd + exit 1 +} + DOCSRCDIR=`dirname $0`/../docs-xml -cd $DOCSRCDIR || exit 1 +pushd $DOCSRCDIR || exit 1 git clean -d -x -f autoconf && \ @@ -11,21 +17,23 @@ autoconf && \ make release if [ $? != 0 ]; then - echo "Docs build failed!" - exit 1 + _exit "Docs build failed!" fi -mkdir ../docs +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 1 +cd ../docs || _exit "Error changing dir to ${DOCSDIR}/../docs/" + /bin/rm -rf test.pdf Samba4*pdf htmldocs/Samba4* htmldocs/test mv manpages-3 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 +echo "Success" +popd exit