diff options
author | Ryota MIBU <r-mibu@cq.jp.nec.com> | 2015-11-26 16:29:33 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@172.30.200.206> | 2015-11-26 16:29:33 +0000 |
commit | e9269b488351819d4f9c6732b6d972216c2bde93 (patch) | |
tree | 5bb6321b54ea3f51a3d7e1d433fcd43f4517d1a2 | |
parent | dea16556aa1ef799337ae4f9ea1127e02025b291 (diff) | |
parent | 131b9e34813fb4d6bc1c8ff678a8fc63fb08ee8f (diff) |
Merge "jjb; fix doc builder to accept `'` in title"
-rw-r--r-- | jjb/releng-macros.yaml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/jjb/releng-macros.yaml b/jjb/releng-macros.yaml index 51a6ba60b..3afe8482a 100644 --- a/jjb/releng-macros.yaml +++ b/jjb/releng-macros.yaml @@ -195,7 +195,7 @@ if [[ ! -f "$dir/conf.py" ]] ; then cp releng/docs/etc/conf.py "$dir/conf.py" _title=$(cd $dir; python -c "$_get_title_script") - echo "latex_documents = [('index', '$_name.tex', '$_title', 'OPNFV', 'manual'),]" >> "$dir/conf.py" + echo "latex_documents = [('index', '$_name.tex', \"$_title\", 'OPNFV', 'manual'),]" >> "$dir/conf.py" fi cp -f releng/docs/etc/opnfv-logo.png "$dir/opnfv-logo.png" |