mirror of
https://github.com/codecov/codecov-action.git
synced 2026-04-09 16:00:05 +00:00
Add makefile and automations
This commit is contained in:
parent
7de43a7373
commit
c6de3f8548
5 changed files with 36 additions and 1 deletions
12
install.sh
Executable file
12
install.sh
Executable file
|
|
@ -0,0 +1,12 @@
|
|||
#!/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 ../../hook/$i
|
||||
done
|
||||
Loading…
Add table
Add a link
Reference in a new issue