Ignore:
Timestamp:
2020-10-23T17:41:18+13:00 (4 years ago)
Author:
davidb
Message:

Evolution of code away from Company model to one that uses RecordHashmap to represent the rows coming out of the JDBC database

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/trunk/model-sites-dev/cambridge-museum/collect/waikato-independent/pre-import/EditableDatabaseTable/DEPLOY.sh

    r34505 r34511  
    11#!/bin/bash
    22
    3 cp target/EditableDataTable-0.0.1-SNAPSHOT.war  ../../../../../../../packages/tomcat/webapps/EditableDataTable.war
     3webapps_dir=../../../../../../../packages/tomcat/webapps
     4
     5webapp_context=EditableDatabaseTable
     6
     7if [ -d "$webapps_dir/$webapp_context" ] ; then
     8    echo "Removing: $webapps_dir/$webapp_context"
     9    /bin/rm -rf "$webapps_dir/$webapp_context"
     10fi
     11
     12echo "Deploying $webapp_context.war to $webapps_dir"
     13
     14cp target/EditableDatabaseTable-0.0.1-SNAPSHOT.war  "$webapps_dir/$webapp_context".war
     15
Note: See TracChangeset for help on using the changeset viewer.