npm run more bug fixes

This commit is contained in:
nathan 2016-06-01 15:33:17 -04:00
parent 537ccc89b3
commit 4b2d02b01e
3 changed files with 7 additions and 3 deletions

View File

@ -53,4 +53,10 @@ rm $export_file
mv f$apexappid apex # mv f$apexappid apex #
cd apex/
sed s^@application^@apex/application^ < install.sql > temp.sql
rm -f install.sql
mv temp.sql install.sql
#now you can update your working copy with changes from your colleagues and reinstall into apex #now you can update your working copy with changes from your colleagues and reinstall into apex

View File

@ -2,6 +2,4 @@
script_folder=$(dirname $(readlink $0)) script_folder=$(dirname $(readlink $0))
$script_folder/check_conf_file.sh || exit 1 $script_folder/check_conf_file.sh || exit 1
source config/apexupdate.conf || exit 1 source config/apexupdate.conf || exit 1
cd apex/ || exit 1
script_folder=$(dirname $(readlink $0))
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

View File

@ -15,6 +15,6 @@ begin
apex_application_install.generate_offset; apex_application_install.generate_offset;
end; end;
/ /
@install.sql @apex/install.sql
/ /
quit quit