diff options
Diffstat (limited to 'deployment/zip')
-rw-r--r-- | deployment/zip/pom.xml | 1 | ||||
-rwxr-xr-x | deployment/zip/src/main/release/bin/onap.sh | 6 |
2 files changed, 3 insertions, 4 deletions
diff --git a/deployment/zip/pom.xml b/deployment/zip/pom.xml index 9ad346cc..e8cfa24b 100644 --- a/deployment/zip/pom.xml +++ b/deployment/zip/pom.xml @@ -89,7 +89,6 @@ fileset(dir: "${project.build.directory}/../../../plugins/target/lib/") } - ant.copy(todir: "${deployUnzip}/conf") { fileset(file: diff --git a/deployment/zip/src/main/release/bin/onap.sh b/deployment/zip/src/main/release/bin/onap.sh index 9349c143..e4a58502 100755 --- a/deployment/zip/src/main/release/bin/onap.sh +++ b/deployment/zip/src/main/release/bin/onap.sh @@ -28,9 +28,9 @@ do CLASSPATH=$CLASSPATH:$entry done -if [ "$ONAP_CLI_DEBUG" = "true" ] +if [ "$OPEN_CLI_DEBUG" = "true" ] then - java -Xdebug -Xrunjdwp:transport=dt_socket,address=${ONAP_CLI_DEBUG_PORT:-5005},server=y -classpath $CLASSPATH -DONAP_CLI_HOME=$ONAP_CLI_HOME org.onap.cli.main.OnapCli "$@" + java -Xdebug -Xrunjdwp:transport=dt_socket,address=${OPEN_CLI_DEBUG_PORT:-5005},server=y -classpath $CLASSPATH -DOPEN_CLI_HOME=$OPEN_CLI_HOME org.onap.cli.main.OnapCli "$@" else - java -classpath $CLASSPATH -DONAP_CLI_HOME=$ONAP_CLI_HOME org.onap.cli.main.OnapCli "$@" + java -classpath $CLASSPATH -DOPEN_CLI_HOME=$OPEN_CLI_HOME org.onap.cli.main.OnapCli "$@" fi |