mirror of
https://github.com/rsms/inter.git
synced 2024-11-15 19:47:47 +01:00
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
|