4 lines
95 B
Bash
4 lines
95 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
[ -d ".git/hooks" ] || mkdir .git/hooks
|
||
|
ln tools/repo/check.sh .git/hooks/pre-commit
|