1
1
mirror of https://github.com/rsms/inter.git synced 2024-10-26 12:39:40 +03:00
inter/misc/git-hooks/post-checkout.sh

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