Skip to content

Commit

Permalink
Fixed condition check for edition in runOracle.sh for arm64 platforms (
Browse files Browse the repository at this point in the history
  • Loading branch information
aditya059 committed Jul 17, 2023
1 parent bafde6a commit e1ddf5a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ EOF

# Only EE is supported for 19c on ARM64 platform
if [ "$(arch)" == "aarch64" ] || [ "$(arch)" == "arm64" ]; then
if [ "${ORACLE_EDITION^^}" != "ENTERPRISE" ]; then
if { [ "${ORACLE_EDITION^^}" != "" ] && [ "${ORACLE_EDITION^^}" != "ENTERPRISE" ]; }; then
echo "${ORACLE_EDITION} edition is not supported on ARM64 platform.";
exit 1;
fi;
Expand Down

0 comments on commit e1ddf5a

Please sign in to comment.