Files
growstuff/lib/tasks/hooks.rake
2020-01-10 16:50:52 +13:00

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