mirror of
https://github.com/rsms/inter.git
synced 2025-01-06 07:56:23 +03:00
7 lines
146 B
Bash
Executable File
7 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
|