mirror of
https://github.com/codecov/codecov-action.git
synced 2025-12-08 08:06:27 +00:00
13 lines
194 B
Bash
Executable File
13 lines
194 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
if ! [ -e .git ]; then
|
|
echo "Please run this from repo root directory"
|
|
exit 1
|
|
fi
|
|
|
|
cd .git/hooks
|
|
for i in pre-commit; do
|
|
rm -fv $i
|
|
ln -sv ../../hooks/$i
|
|
done
|