mirror of
https://github.com/Growstuff/growstuff.git
synced 2025-12-24 01:57:46 -05:00
8 lines
182 B
Ruby
8 lines
182 B
Ruby
# frozen_string_literal: true
|
|
|
|
desc "Install git hooks"
|
|
task :hooks do
|
|
FileUtils.symlink '../../script/pre-commit.sh', '.git/hooks/pre-commit',
|
|
force: true
|
|
end
|