Repository: tinkerpop Updated Branches: refs/heads/tp31 a26d6d828 -> 09e842714
Write Gremlin Server log to file during process-docs.sh TINKERPOP-1416 CTR Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/09e84271 Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/09e84271 Diff: http://git-wip-us.apache.org/repos/asf/tinkerpop/diff/09e84271 Branch: refs/heads/tp31 Commit: 09e842714856996ca5f1335f2037b79a58b0f928 Parents: a26d6d8 Author: Stephen Mallette <[email protected]> Authored: Thu Sep 1 13:46:45 2016 -0400 Committer: Stephen Mallette <[email protected]> Committed: Thu Sep 1 13:46:45 2016 -0400 ---------------------------------------------------------------------- docs/preprocessor/preprocess.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/09e84271/docs/preprocessor/preprocess.sh ---------------------------------------------------------------------- diff --git a/docs/preprocessor/preprocess.sh b/docs/preprocessor/preprocess.sh index 808eacd..3fafef0 100755 --- a/docs/preprocessor/preprocess.sh +++ b/docs/preprocessor/preprocess.sh @@ -66,6 +66,7 @@ function directory { } mkdir -p target/postprocess-asciidoc/tmp +mkdir -p target/postprocess-asciidoc/logs cp -R docs/{static,stylesheets} target/postprocess-asciidoc/ TP_HOME=`pwd` @@ -80,7 +81,7 @@ HISTORY_FILE=".gremlin_groovy_history" [ -f ~/${HISTORY_FILE} ] && cp ~/${HISTORY_FILE} ${TMP_DIR} pushd gremlin-server/target/apache-tinkerpop-gremlin-server-*-standalone > /dev/null -bin/gremlin-server.sh conf/gremlin-server-modern.yaml > /dev/null 2> /dev/null & +bin/gremlin-server.sh conf/gremlin-server-modern.yaml > ${TP_HOME}/target/postprocess-asciidoc/logs/gremlin-server.log 2>&1 & GREMLIN_SERVER_PID=$! popd > /dev/null
