summaryrefslogtreecommitdiffstats
path: root/jjb/opnfvdocs
diff options
context:
space:
mode:
authorAric Gardner <agardner@linuxfoundation.org>2015-04-08 17:00:22 -0400
committerAric Gardner <agardner@linuxfoundation.org>2015-04-08 17:00:51 -0400
commitcbf8dbb6071d8680a35eccd76d617e1ff9e6f3c4 (patch)
tree1fbe325ea7767f521763196476a10baf142f5bda /jjb/opnfvdocs
parentc411eb7b50c9da32c5ffe2f8e01c2c5ef03fe70c (diff)
Double up the curly braces because reasons.
Change-Id: I755c8fa792716307606ffb5c5f6b370f076b67e9 JIRA:0000 Signed-off-by: Aric Gardner <agardner@linuxfoundation.org>
Diffstat (limited to 'jjb/opnfvdocs')
-rw-r--r--jjb/opnfvdocs/build-docu.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/jjb/opnfvdocs/build-docu.sh b/jjb/opnfvdocs/build-docu.sh
index 1ea9d0eeb..5718b07c8 100644
--- a/jjb/opnfvdocs/build-docu.sh
+++ b/jjb/opnfvdocs/build-docu.sh
@@ -1,6 +1,6 @@
#!/bin/bash
for file in $(find . -type f -iname '*.rst'); do
- file_cut="${file%.*}"
+ file_cut="${{file%.*}}"
html_file=$file_cut".html"
pdf_file=$file_cut".pdf"
rst2html $file > $html_file