Skip to content
This repository has been archived by the owner on Jan 10, 2023. It is now read-only.

Commit

Permalink
Publish env checksums (#425)
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasrockhu authored Apr 15, 2021
1 parent 2cc1355 commit e42edd8
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions SHA1SUM
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
0ddc61a9408418c73b19a1375f63bb460dc947a8 codecov
672ef509d8ecfd4c906287b9b71b31ff8376265a env
1 change: 1 addition & 0 deletions SHA256SUM
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
89c658e261d5f25533598a222fd96cf17a5fa0eb3772f2defac754d9970b2ec8 codecov
0160f2c1cd20d69885be4d12fec762a91ce021ade7fff21fe10b3f14ff003812 env
1 change: 1 addition & 0 deletions SHA512SUM
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
d075b412a362a9a2b7aedfec3b8b9a9a927b3b99e98c7c15a2b76ef09862aeb005e91d76a5fd71b511141496d0fd23d1b42095f722ebcd509d768fba030f159e codecov
fd5da0e551af075c51b4ca7562134b5477ac21b31777445e1ab796615d4209ba198c9f7cb1632b72c489e51044f43b3495154b5139910f3dbdfeae1354384acd env
1 change: 1 addition & 0 deletions hooks/pre-commit
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/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 shasum -a "${i}" env >> "SHA${i}SUM"; done
for i in 1 256 512; do git add "SHA${i}SUM"; done

2 comments on commit e42edd8

@threesquared
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Would be great to get this into a versioned release so we can use that when validating the checksum 👍

@thomasrockhu
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@threesquared, will push a new version Monday with this change

Please sign in to comment.