1
0

Add githook plugin (#398)

This commit is contained in:
Mikołaj Pich
2019-06-04 01:53:20 +02:00
committed by Rafał Borcz
parent 6175081b88
commit 1d9a49d552
5 changed files with 20 additions and 1 deletions

10
app/hooks.gradle Normal file
View File

@ -0,0 +1,10 @@
apply plugin: "com.star-zero.gradle.githook"
githook {
failOnMissingHooksDir = false
hooks {
"pre-push" {
shell = "./app/play-publish-lint.sh"
}
}
}