Adapt dashboard to a second vPing scenario
[releng.git] / utils / docs-build.sh
index 55cb9f6..b397094 100755 (executable)
@@ -137,7 +137,11 @@ prepare_src_files
 find $DOCS_DIR -name $INDEX_RST -printf '%h\n' | while read dir
 do
     name=$(generate_name $dir)
-    src="$SRC_DIR/${dir#$DOCS_DIR/}"
+    if is_top_dir "$dir" ; then
+        src="$SRC_DIR"
+    else
+        src="$SRC_DIR/${dir#$DOCS_DIR/}"
+    fi
     build="$BUILD_DIR/$name"
     output="$OUTPUT_DIR/$name"
     conf="$src/conf.py"
@@ -182,9 +186,14 @@ do
     # TODO: failures in ODT creation should be handled error and
     #       cause 'exit 1' before OPNFV B release.
     tex=$(find $build -name '*.tex' | head -1)
-    odt=$(basename "${tex%.tex}.odt")
+    odt="${tex%.tex}.odt"
     if [[ -e $tex ]] && which pandoc > /dev/null ; then
-        pandoc $tex -o $output/$odt || {
+        (
+            cd $(dirname $tex)
+            pandoc $(basename $tex) -o $(basename $odt)
+        ) && {
+            mv $odt $output/
+        }|| {
             msg="Error: ODT creation for $dir has failed."
             echo
             echo "$msg"