Changeset 753
- Timestamp:
- Jul 29, 2010, 2:23:51 PM (13 years ago)
- Location:
- misc/scripts
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
misc/scripts/deploy_latest_gscf.sh
r752 r753 118 118 while [ "$index" -lt "${#DEV_PLUGINS[@]}" ] 119 119 do 120 if [ `find /home/tomcat/.grails/$GRAILS_VERSION/projects/gscf/plugins/ -maxdepth 1|grep -i ${DEV_PLUGINS[index]}|wc -l` -gt 0]; then 120 PLUGIN_INSTALLED=`find /home/tomcat/.grails/$GRAILS_VERSION/projects/gscf/plugins/ -maxdepth 1|grep -i ${DEV_PLUGINS[index]}|wc -l` 121 if [ "$PLUGIN_INSTALLED" -gt "0" ]; then 121 122 echo $STAMP uninstalling ${DEV_PLUGINS[index]} plugin 122 123 grails uninstall-plugin ${DEV_PLUGINS[index]} > /dev/null -
misc/scripts/gscf_continuous_integration.sh
r752 r753 138 138 while [ "$index" -lt "${#DEV_PLUGINS[@]}" ] 139 139 do 140 if [ `find /home/tomcat/.grails/$GRAILS_VERSION/projects/gscf/plugins/ -maxdepth 1|grep -i ${DEV_PLUGINS[index]}|wc -l` -gt 0]; then 140 PLUGIN_INSTALLED=`find /home/tomcat/.grails/$GRAILS_VERSION/projects/gscf/plugins/ -maxdepth 1|grep -i ${DEV_PLUGINS[index]}|wc -l` 141 if [ "$PLUGIN_INSTALLED" -gt "0" ]; then 141 142 echo $STAMP uninstalling ${DEV_PLUGINS[index]} plugin 142 143 grails uninstall-plugin ${DEV_PLUGINS[index]} > /dev/null
Note: See TracChangeset
for help on using the changeset viewer.