[#120222879] more styling to fix import issues
This commit is contained in:
parent
b8fc565a1d
commit
14f7a21be7
@ -1,10 +1,10 @@
|
|||||||
# designed to be called from frontrunner script
|
# designed to be called from frontrunner script
|
||||||
script_folder=$(dirname $0)
|
script_folder=$(dirname "${0}")
|
||||||
$script_folder/check_conf_file.sh || exit 1
|
"${script_folder}"/check_conf_file.sh || exit 1
|
||||||
source config/asc.conf || exit 1
|
source config/asc.conf || exit 1
|
||||||
if [ -z $app_alias ]; then
|
if [ -z "${app_alias}" ]; then
|
||||||
#call install_apex with an empty app_alias string (will ask for user input otherwise)
|
#call install_apex with an empty app_alias string (will ask for user input otherwise)
|
||||||
sqlplus $username/$password@$database_connection @$script_folder/install_apex.sql $apexappid $workspace_name $parsing_schema '' || exit 1
|
sqlplus "${username}"/"${password}"@"${database_connection}" @"${script_folder}"/install_apex.sql "${apexappid}" "${workspace_name}" "${parsing_schema}" '' || exit 1
|
||||||
else
|
else
|
||||||
sqlplus $username/$password@$database_connection @$script_folder/install_apex.sql $apexappid $workspace_name $parsing_schema $app_alias || exit 1
|
sqlplus "${username}"/"${password}"@"${database_connection}" @"${script_folder}"/install_apex.sql "${apexappid}" "${workspace_name}" "${parsing_schema}" "${app_alias}" || exit 1
|
||||||
fi
|
fi
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user