6 lines
146 B
Bash
Executable file
6 lines
146 B
Bash
Executable file
#!/bin/sh
|
|
# Uninstall git hook used by old toolchain
|
|
case "$0" in
|
|
*/.git/hooks/*) rm "$0";;
|
|
*) echo "Inter git hooks are no longer used"
|
|
esac
|