Skip to content

Commit

Permalink
add git hook installation
Browse files Browse the repository at this point in the history
Signed-off-by: Andy Scherzinger <[email protected]>
  • Loading branch information
AndyScherzinger committed Apr 3, 2022
1 parent c9cef14 commit f933c3b
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -334,6 +334,14 @@ dependencies {
gplayImplementation "com.google.firebase:firebase-messaging:23.0.0"
}

task installGitHooks(type: Copy, group: "development") {
description = "Install git hooks"
from("../scripts/hooks") {
include '*'
}
into '../.git/hooks'
}

detekt {
reports {
xml {
Expand Down

0 comments on commit f933c3b

Please sign in to comment.