Repository: tinkerpop Updated Branches: refs/heads/TINKERPOP-1158 bac5b0d02 -> d1f4c5760
Removed `popd` from the end of `gremlin.sh`. Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/d1f4c576 Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/d1f4c576 Diff: http://git-wip-us.apache.org/repos/asf/tinkerpop/diff/d1f4c576 Branch: refs/heads/TINKERPOP-1158 Commit: d1f4c5760df870b93d5939ceff26ba14b6fbc525 Parents: bac5b0d Author: Daniel Kuppitz <[email protected]> Authored: Thu Sep 29 19:09:03 2016 +0200 Committer: Daniel Kuppitz <[email protected]> Committed: Thu Sep 29 19:09:03 2016 +0200 ---------------------------------------------------------------------- gremlin-console/src/main/bin/gremlin.sh | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/d1f4c576/gremlin-console/src/main/bin/gremlin.sh ---------------------------------------------------------------------- diff --git a/gremlin-console/src/main/bin/gremlin.sh b/gremlin-console/src/main/bin/gremlin.sh index e47d94e..bb154aa 100755 --- a/gremlin-console/src/main/bin/gremlin.sh +++ b/gremlin-console/src/main/bin/gremlin.sh @@ -32,10 +32,8 @@ while [ -h "${SCRIPT_NAME}" ]; do cd ${DIR} done -WORKING_DIR="$( cd -P "${DIR}/.." && pwd )" -SYSTEM_EXT_DIR="${WORKING_DIR}/ext" - -pushd ${WORKING_DIR} > /dev/null +cd .. +SYSTEM_EXT_DIR="`pwd`/ext" JAVA_OPTIONS=${JAVA_OPTIONS:-} @@ -115,5 +113,3 @@ fi # Start the JVM, execute the application, and return its exit code exec $JAVA $JAVA_OPTIONS $MAIN_CLASS "$@" - -popd > /dev/null
