This repository was archived by the owner on Jan 10, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 156
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
668d6d5
commit bb52e37
Showing
7 changed files
with
26 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
49c316778777ccb99f0bac6eb90657c1e2e559b4 codecov | ||
8b5045267949795644b6dea2e45d4e35fa196215 codecov |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
0ee62670767d25728a1cc99a8dc92ec553acc13555797821b2fbb90077408865 codecov | ||
24da98903b69bd6cfa2eaf6f32f6053d9fc982151bb2c63bb0ce758d2aae7db9 codecov |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
9ec1c1dfc4cf4db65e956b2dc4595d8341d78b695d71039cec281dd42d0515a146f353204b6ed211a12c17a84f0561fe130331e321ae89ce7068ab71974f2cdb codecov | ||
3f022302db4061f2e54ce1a141d1fcf2c350a362c0853f7d87a6941bc6504bf2bc59f1f1584eb788c080c63e5dd0baad2bc21897923ac2b9bd891a27bcd4f764 codecov |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#!/usr/bin/env bash | ||
|
||
for i in 1 256 512; do shasum -a "${i}" codecov > "SHA${i}SUM"; done | ||
for i in 1 256 512; do git add "SHA${i}SUM"; done |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 ../../hooks/$i | ||
done |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters