Created
August 15, 2017 03:32
-
-
Save Cassie-von-Clausewitz/9c34a4ac2733712be20147841f5638e7 to your computer and use it in GitHub Desktop.
Lockhunter Gradle task
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
task clean(type: Exec) { | |
ext.lockhunter = '\"C:\\Program Files\\LockHunter.exe\"' | |
def buildDir = file(new File("build")) | |
commandLine 'cmd', "$lockhunter", '/delete', '/silent', buildDir | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment