Fix publishing location of RST guides

Publish RST guides properly, we published them to e.g. user-guide/html/
instead of user-guide/. This is fixed with adding slashes to rsync so
that the first and the second parameter are equivalent.

Change-Id: Ie0842c19c45c5c99da3501303a453dd0920de74c
This commit is contained in:
Andreas Jaeger 2015-05-16 20:19:04 +02:00
parent b72377e05c
commit 081c009b9e

View File

@ -74,5 +74,5 @@ sphinx-build -E -W $TAG_OPT $DIRECTORY/source $BUILD_DIR
# Copy RST
if [ "$TARGET" != "" ] ; then
mkdir -p publish-docs/$TARGET
rsync -a $BUILD_DIR publish-docs/$TARGET
rsync -a $BUILD_DIR/ publish-docs/$TARGET/
fi