Changeset 930 for branches/features
- Timestamp:
- May 18, 2011, 2:59:58 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/features/purchaseOrders/scripts/_Events.groovy
r528 r930 8 8 } 9 9 } 10 11 // Prevent interactive requests when a plugin is installed/un-installed. 12 // http://ldaley.com/post/2616518761/disabling-grails-plugin-upgrade-confirmation 13 def resolveDependenciesWasInteractive = false 14 eventResolveDependenciesStart = { 15 resolveDependenciesWasInteractive = isInteractive 16 isInteractive = false 17 } 18 19 eventResolveDependenciesEnd = { 20 isInteractive = resolveDependenciesWasInteractive 21 } 22
Note: See TracChangeset
for help on using the changeset viewer.