You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tinkerpop.apache.org by sp...@apache.org on 2015/11/22 06:59:35 UTC

[20/22] incubator-tinkerpop git commit: minor fix in the AsciiDocs post-processor

minor fix in the AsciiDocs post-processor


Project: http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/commit/ead508d1
Tree: http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/tree/ead508d1
Diff: http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/diff/ead508d1

Branch: refs/heads/master
Commit: ead508d15539f17140efbca1a823eaa1dd5e94e6
Parents: cc0c2ba
Author: Daniel Kuppitz <da...@hotmail.com>
Authored: Fri Nov 20 22:12:55 2015 +0100
Committer: Daniel Kuppitz <da...@hotmail.com>
Committed: Fri Nov 20 22:12:55 2015 +0100

----------------------------------------------------------------------
 docs/postprocessor/postprocess.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/blob/ead508d1/docs/postprocessor/postprocess.sh
----------------------------------------------------------------------
diff --git a/docs/postprocessor/postprocess.sh b/docs/postprocessor/postprocess.sh
index cef9b93..8d1fd92 100755
--- a/docs/postprocessor/postprocess.sh
+++ b/docs/postprocessor/postprocess.sh
@@ -26,7 +26,7 @@ if [ -d "target/docs" ]; then
   find target/docs -name index.html | while read file ; do
     awk -f "docs/postprocessor/processor.awk" "${file}"                   \
       | perl -0777 -pe 's/<span class="comment">\/\*\n \*\/<\/span>//igs' \
-      | sed "s/x\.y\.z/${TP_VERSION}/"                                    \
+      | sed "s/x\.y\.z/${TP_VERSION}/g"                                   \
       > "${file}.tmp" && mv "${file}.tmp" "${file}"
   done
 fi