Fail on exit status != 0 on every command in pipeline for build-docu scripts
[releng.git] / jjb / opnfvdocs / docu-verify.sh
1 #!/bin/bash
2 set -e
3 set -o pipefail
4
5 project="$(git remote -v | head -n1 | awk '{{print $2}}' | sed -e 's,.*:\(.*/\)\?,,' -e 's/\.git$//')"
6 export PATH=$PATH:/usr/local/bin/
7
8 git_sha1="$(git rev-parse HEAD)"
9 docu_build_date="$(date)"
10
11 files=()
12 while read -r -d ''; do
13         files+=("$REPLY")
14 done < <(find * -type f -iname '*.rst' -print0)
15
16 for file in "${{files[@]}}"; do
17
18         file_cut="${{file%.*}}"
19         gs_cp_folder="${{file_cut}}"
20
21         # sed part
22         sed -i "s/_sha1_/$git_sha1/g" $file
23         sed -i "s/_date_/$docu_build_date/g" $file
24
25         # rst2html part
26         echo "rst2html $file"
27         rst2html $file > $file_cut".html"
28
29         echo "rst2pdf $file"
30         rst2pdf $file -o $file_cut".pdf"
31
32 done
33