diff options
author | Victor Laza <vlaza@cloudbasesolutions.com> | 2015-04-10 11:18:30 +0300 |
---|---|---|
committer | Victor Laza <vlaza@cloudbasesolutions.com> | 2015-04-14 16:45:02 +0300 |
commit | 40f590c54a6057b030949446a06a63b2e2e04dee (patch) | |
tree | 3a271ddbb9817b06e7b96d6975cdc595a2e2897c /jjb | |
parent | c42455af4f0cf3502f16b2d017cd98df038f83e8 (diff) |
Added verbosity for the script that builds documentation
JIRA: DOCS-XXX - Added verbosity for the build-docu.sh script that
builds documentation so details would be seen in "Console Output"
when Jenkins build the job
Change-Id: Iba927ede60694f7558c2bf51d58672fde55e2bca
Signed-off-by: Victor Laza <vlaza@cloudbasesolutions.com>
Diffstat (limited to 'jjb')
-rw-r--r-- | jjb/functest/build-docu.sh | 1 | ||||
-rw-r--r-- | jjb/genesis/build-docu.sh | 1 | ||||
-rw-r--r-- | jjb/opnfvdocs/build-docu.sh | 1 | ||||
-rw-r--r-- | jjb/pharos/build-docu.sh | 1 |
4 files changed, 4 insertions, 0 deletions
diff --git a/jjb/functest/build-docu.sh b/jjb/functest/build-docu.sh index 797056456..ca9ecd0d3 100644 --- a/jjb/functest/build-docu.sh +++ b/jjb/functest/build-docu.sh @@ -1,4 +1,5 @@ #!/bin/bash +set -xv for file in $(find . -type f -iname '*.rst'); do file_cut="${{file%.*}}" html_file=$file_cut".html" diff --git a/jjb/genesis/build-docu.sh b/jjb/genesis/build-docu.sh index 797056456..ca9ecd0d3 100644 --- a/jjb/genesis/build-docu.sh +++ b/jjb/genesis/build-docu.sh @@ -1,4 +1,5 @@ #!/bin/bash +set -xv for file in $(find . -type f -iname '*.rst'); do file_cut="${{file%.*}}" html_file=$file_cut".html" diff --git a/jjb/opnfvdocs/build-docu.sh b/jjb/opnfvdocs/build-docu.sh index 5718b07c8..e0df36437 100644 --- a/jjb/opnfvdocs/build-docu.sh +++ b/jjb/opnfvdocs/build-docu.sh @@ -1,4 +1,5 @@ #!/bin/bash +set -xv for file in $(find . -type f -iname '*.rst'); do file_cut="${{file%.*}}" html_file=$file_cut".html" diff --git a/jjb/pharos/build-docu.sh b/jjb/pharos/build-docu.sh index 797056456..ca9ecd0d3 100644 --- a/jjb/pharos/build-docu.sh +++ b/jjb/pharos/build-docu.sh @@ -1,4 +1,5 @@ #!/bin/bash +set -xv for file in $(find . -type f -iname '*.rst'); do file_cut="${{file%.*}}" html_file=$file_cut".html" |