Skip to content

switching to standard Bourne Shell style for building up environment … #977

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Sep 14, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 4 additions & 6 deletions installer/src/main/bin/shared.sh
Original file line number Diff line number Diff line change
Expand Up @@ -268,13 +268,11 @@ runJython() {
variableSetup

JAVA_PROPERTIES="-Djava.util.logging.config.class=${LOG_CONFIG_CLASS}"
JAVA_PROPERTIES+=" -Dpython.cachedir.skip=true"
JAVA_PROPERTIES+=" -Dpython.console="
JAVA_PROPERTIES+=" ${WLSDEPLOY_PROPERTIES}"
JAVA_PROPERTIES="${JAVA_PROPERTIES} -Dpython.cachedir.skip=true"
JAVA_PROPERTIES="${JAVA_PROPERTIES} -Dpython.console="
JAVA_PROPERTIES="${JAVA_PROPERTIES} ${WLSDEPLOY_PROPERTIES}"
export JAVA_PROPERTIES
CLASSPATH="${WLSDEPLOY_HOME}/lib/weblogic-deploy-core.jar"
CLASSPATH+=":"
CLASSPATH+="$ORACLE_SERVER_DIR/server/lib/weblogic.jar"
CLASSPATH="${WLSDEPLOY_HOME}/lib/weblogic-deploy-core.jar:$ORACLE_SERVER_DIR/server/lib/weblogic.jar"

# print the configuration, and run the script

Expand Down