Changeset 1729
- Timestamp:
- 08/24/08 14:06:34 (5 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
coldbox/trunk/CodeDepot/interceptors/com/ortussolutions/deployment/Deploy.cfc
r1728 r1729 53 53 54 54 /* Check for a cleanupCommandObject */ 55 if( propertyExists(' cleanupCommandObject') ){55 if( propertyExists('deployCommandObject') ){ 56 56 try{ 57 57 /* Create it */ 58 instance. cleanupCommandObject = createObject("component",getProperty('cleanupCommandObject')).init(controller);58 instance.deployCommandObject = createObject("component",getProperty('deployCommandObject')).init(controller); 59 59 } 60 60 catch(Any e){ … … 98 98 99 99 /* cleanup command */ 100 if( propertyExists(' cleanupCommandObject') ){101 instance. cleanupCommandObject.execute();100 if( propertyExists('deployCommandObject') ){ 101 instance.deployCommandObject.execute(); 102 102 } 103 103 coldbox/trunk/testharness/config/coldbox.xml.cfm
r1728 r1729 127 127 <Interceptor class="coldbox.CodeDepot.interceptors.com.ortussolutions.deployment.Deploy"> 128 128 <Property name="tagFile">config/_deploy.tag</Property> 129 <Property name=" cleanupCommandObject">coldbox.testharness.model.DeployCleanup</Property>129 <Property name="deployCommandObject">coldbox.testharness.model.DeployCleanup</Property> 130 130 </Interceptor> 131 131 <Interceptor class="coldbox.system.interceptors.autowire">
