Skip to content

Commit b0cbec5

Browse files
switching to standard Bourne Shell style for building up environment variable values (#977)
1 parent f794778 commit b0cbec5

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

installer/src/main/bin/shared.sh

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -268,13 +268,11 @@ runJython() {
268268
variableSetup
269269

270270
JAVA_PROPERTIES="-Djava.util.logging.config.class=${LOG_CONFIG_CLASS}"
271-
JAVA_PROPERTIES+=" -Dpython.cachedir.skip=true"
272-
JAVA_PROPERTIES+=" -Dpython.console="
273-
JAVA_PROPERTIES+=" ${WLSDEPLOY_PROPERTIES}"
271+
JAVA_PROPERTIES="${JAVA_PROPERTIES} -Dpython.cachedir.skip=true"
272+
JAVA_PROPERTIES="${JAVA_PROPERTIES} -Dpython.console="
273+
JAVA_PROPERTIES="${JAVA_PROPERTIES} ${WLSDEPLOY_PROPERTIES}"
274274
export JAVA_PROPERTIES
275-
CLASSPATH="${WLSDEPLOY_HOME}/lib/weblogic-deploy-core.jar"
276-
CLASSPATH+=":"
277-
CLASSPATH+="$ORACLE_SERVER_DIR/server/lib/weblogic.jar"
275+
CLASSPATH="${WLSDEPLOY_HOME}/lib/weblogic-deploy-core.jar:$ORACLE_SERVER_DIR/server/lib/weblogic.jar"
278276

279277
# print the configuration, and run the script
280278

0 commit comments

Comments
 (0)