-
Notifications
You must be signed in to change notification settings - Fork 123
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 #1891 from radixdlt/feature/cargo-lock
build: Use Cargo.lock for all crates
- Loading branch information
Showing
42 changed files
with
11,885 additions
and
1,725 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,9 +1,14 @@ | ||
#!/bin/bash | ||
|
||
# This hook ensures that code formatting is good before allowing you to commit. | ||
# Install me by running: `cp .githooks/pre-commit .git/hooks` | ||
# Remove me by running: `rm .git/hooks/pre-commit` | ||
set -e | ||
|
||
cd "$(dirname "$0")" | ||
|
||
echo "Running code format check...If it stops you from committing, try running script './format.sh' first" | ||
echo "[PRE-COMMIT] Formatting assertion" | ||
|
||
../check.sh | ||
../../check.sh --quiet || { echo "[PRE-COMMIT] Formatting check FAIL: Committing aborted"; exit 1; } | ||
|
||
echo "[PRE-COMMIT] Formatting check PASS" |
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
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
Oops, something went wrong.