Repository: knox Updated Branches: refs/heads/v0.4.0 6475828f0 -> b4cd59591
KNOX-311: Parameters not passed to java properly by knoxcli.sh on Ubuntu. Project: http://git-wip-us.apache.org/repos/asf/knox/repo Commit: http://git-wip-us.apache.org/repos/asf/knox/commit/b4cd5959 Tree: http://git-wip-us.apache.org/repos/asf/knox/tree/b4cd5959 Diff: http://git-wip-us.apache.org/repos/asf/knox/diff/b4cd5959 Branch: refs/heads/v0.4.0 Commit: b4cd59591913b60c5e50afadc02b1ea1c2cfa2a8 Parents: 6475828 Author: Kevin Minder <[email protected]> Authored: Fri Mar 14 15:23:14 2014 -0400 Committer: Kevin Minder <[email protected]> Committed: Fri Mar 14 15:24:07 2014 -0400 ---------------------------------------------------------------------- gateway-release/home/bin/knoxcli.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/knox/blob/b4cd5959/gateway-release/home/bin/knoxcli.sh ---------------------------------------------------------------------- diff --git a/gateway-release/home/bin/knoxcli.sh b/gateway-release/home/bin/knoxcli.sh index 9629a24..d01aa4e 100755 --- a/gateway-release/home/bin/knoxcli.sh +++ b/gateway-release/home/bin/knoxcli.sh @@ -58,7 +58,7 @@ function main { #printf "Starting $APP_LABEL \n" #printf "$@" - exec $JAVA $APP_MEM_OPTS $APP_DBG_OPTS $APP_LOG_OPTS -jar $APP_JAR "$@" || exit 1 + $JAVA $APP_MEM_OPTS $APP_DBG_OPTS $APP_LOG_OPTS -jar $APP_JAR $@ || exit 1 return 0 }
