
task installGitHooks(type: Exec) {
    shouldRunAfter("clean")
    doFirst {
        println "-- Configuring git to use .githooks --"
    }
    commandLine 'git', 'config', 'core.hooksPath', '.githooks'
}
