Skip to content

Commit

Permalink
chore: pre-commit 스크립트 실행 권한 Task 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
nove1080 committed Sep 19, 2024
1 parent 8c48107 commit c4b4c05
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions tasks/update-git-hooks.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
//pre-commit 스크립트 실행 권한 부여
tasks.register('updateGitHooks', Copy) {
from './scripts/pre-commit'
into './.git/hooks'
fileMode 0775
}
compileJava.dependsOn('updateGitHooks')

0 comments on commit c4b4c05

Please sign in to comment.