blob: 7da3c7c056966912284b7bd0e2cd3cfbf069a24d (
plain)
1
2
3
4
5
6
7
|
.PHONY: install
install:
if [ -e ../../.overcommit.yml ]; then cp -f ../../.overcommit.yml ../../.overcommit.yml.backup; fi
cp ../../.overcommit.yml.example ../../.overcommit.yml
bundle install
cd ../../ && overcommit -i
|