Skip to content

Commit ff2a08f

Browse files
committed
Remove wallet submodule and update commit script
Delete the wallet submodule and add wallet/ to .gitignore. Update .github/scripts/commit-changes.sh to stage the blockchains directory (git add blockchains) instead of the previous add/exclude pattern, aligning commit automation with the repository layout change.
1 parent 40d299f commit ff2a08f

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

.github/scripts/commit-changes.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ MESSAGE=${1:-"Update assets"}
44

55
git config --global user.name 'github-actions[bot]'
66
git config --global user.email 'github-actions[bot]@users.noreply.github.com'
7-
git add . ':!core'
7+
git add blockchains
88

99
if git diff --cached --quiet; then
1010
echo "Nothing to commit"

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,4 @@
66
.env
77
.env.test
88
bin/
9+
wallet/

0 commit comments

Comments
 (0)