You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tomee.apache.org by rm...@apache.org on 2016/07/25 17:09:15 UTC

tomee git commit: TOMEE-1882 ensuring we can pass arg with spaces to tomee.sh

Repository: tomee
Updated Branches:
  refs/heads/master ca3cddba0 -> 20ea8808a


TOMEE-1882 ensuring we can pass arg with spaces to tomee.sh


Project: http://git-wip-us.apache.org/repos/asf/tomee/repo
Commit: http://git-wip-us.apache.org/repos/asf/tomee/commit/20ea8808
Tree: http://git-wip-us.apache.org/repos/asf/tomee/tree/20ea8808
Diff: http://git-wip-us.apache.org/repos/asf/tomee/diff/20ea8808

Branch: refs/heads/master
Commit: 20ea8808a9a7509f2e9cda7c78a2254b83527a68
Parents: ca3cddb
Author: Romain manni-Bucau <rm...@gmail.com>
Authored: Mon Jul 25 19:08:48 2016 +0200
Committer: Romain manni-Bucau <rm...@gmail.com>
Committed: Mon Jul 25 19:08:48 2016 +0200

----------------------------------------------------------------------
 tomee/apache-tomee/src/main/resources/tomee.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tomee/blob/20ea8808/tomee/apache-tomee/src/main/resources/tomee.sh
----------------------------------------------------------------------
diff --git a/tomee/apache-tomee/src/main/resources/tomee.sh b/tomee/apache-tomee/src/main/resources/tomee.sh
index 1a02897..73982ca 100644
--- a/tomee/apache-tomee/src/main/resources/tomee.sh
+++ b/tomee/apache-tomee/src/main/resources/tomee.sh
@@ -130,6 +130,6 @@ if [ "$1" = "deploy" ] || [ "$1" = "undeploy" ]; then
 elif [ "$1" = "start" ] || [ "$1" = "stop" ]; then
     echo "To start or stop TomEE please use catalina.sh/startup.sh/shutdown.sh instead of tomee.sh"
 else
-    "$_RUNJAVA" $DEBUG $LOGGING_MANAGER -Dopenejb.base="$CATALINA_BASE" -cp "$CLASSPATH" org.apache.openejb.cli.Bootstrap $*
+    "$_RUNJAVA" $DEBUG $LOGGING_MANAGER -Dopenejb.base="$CATALINA_BASE" -cp "$CLASSPATH" org.apache.openejb.cli.Bootstrap "$@"
 fi