-
Notifications
You must be signed in to change notification settings - Fork 112
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1051 from JoinColony/maint/check-hooks-run-ci
Add new script for checking hooks run
- Loading branch information
Showing
5 changed files
with
16 additions
and
16 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
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
Submodule colonyToken
updated
6 files
+26,491 −516 | build/contracts/PinnedMultiSigWallet.json | |
+6 −9 | contracts/VestingSimple.sol | |
+3 −3 | gasCosts/gasCosts.js | |
+26,198 −223 | lib/gnosis-multisig/build/contracts/MultiSigWallet.json | |
+1 −2 | migrations/2_deploy_contracts.js | |
+52 −15 | test/vesting-simple.js |
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,11 @@ | ||
#!/usr/bin/env bash | ||
set -e | ||
cd "$(dirname "$0")" | ||
|
||
if [[ `git status --porcelain` ]]; then | ||
echo "GIT changes detected! Please always run all pre-commit hooks. `npm run build:docs` should help in most cases" | ||
|
||
git status --verbose --verbose | ||
|
||
exit 1 | ||
fi |