Issue #2240 Fix incorrect environment assumptions
* using $awips_home as the prefix for java/python/psql causes problems on edex-environment (wes2bridge) installs; where $awips_home does not contain the java/python/psql installs, instead they are located at /awips2 Change-Id: Iadfe6c2b2ca1a1d9e55bb9cfc73ed6042e6fdcee Former-commit-id: d7f3cd19c3f2697b139e3d36ac7ee536947a2b6f
This commit is contained in:
parent
469df6d806
commit
535248b69b
2 changed files with 7 additions and 5 deletions
|
@ -54,9 +54,10 @@ export EDEX_HOME=$(dirname $dir)
|
|||
awips_home=$(dirname $EDEX_HOME)
|
||||
|
||||
# Find the locations of awips2-python and awips2-java.
|
||||
PYTHON_INSTALL="$awips_home/python"
|
||||
JAVA_INSTALL="$awips_home/java"
|
||||
PSQL_INSTALL="$awips_home/psql"
|
||||
# only set if the location has not already been exported
|
||||
if [ -z "$PYTHON_INSTALL" ]; then PYTHON_INSTALL="$awips_home/python"; fi
|
||||
if [ -z "$JAVA_INSTALL" ]; then JAVA_INSTALL="$awips_home/java"; fi
|
||||
if [ -z "$PSQL_INSTALL" ]; then PSQL_INSTALL="$awips_home/psql"; fi
|
||||
|
||||
# Source The File With The Localization Information
|
||||
source ${dir}/setup.env
|
||||
|
|
|
@ -44,9 +44,10 @@ TODAY=`/bin/date +%Y%m%d`
|
|||
|
||||
# We will no longer be using hard-coded paths that need to be replaced.
|
||||
# Use rpm to find the paths that we need.
|
||||
JAVA_INSTALL="/awips2/java"
|
||||
PYTHON_INSTALL="/awips2/python"
|
||||
export JAVA_INSTALL="/awips2/java"
|
||||
export PYTHON_INSTALL="/awips2/python"
|
||||
EDEX_INSTALL="/awips2/edex"
|
||||
export PSQL_INSTALL="/awips2/psql"
|
||||
|
||||
# The path that is to be used for the script
|
||||
export JAVA_HOME=${JAVA_INSTALL}
|
||||
|
|
Loading…
Add table
Reference in a new issue