Skip to content

Commit ec909f9

Browse files
committed
revert: set author via git config
1 parent 1c3e94f commit ec909f9

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

scripts/update-to-latest.sh

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,11 @@ git --no-pager diff
5858
if ! git diff --no-ext-diff --quiet --exit-code; then
5959
# dirty repo, ready to commit.
6060

61+
git config user.name 'DevTools Bot'
62+
git config user.email '[email protected]'
63+
6164
# commit so we can use the new commit in the changelog
62-
git commit --all -m "Roll protocol to r$commit_rev" --author "DevTools Bot <[email protected]>"
65+
git commit --all -m "Roll protocol to r$commit_rev"
6366

6467
# generate changelog
6568
cd "$protocol_repo_path/scripts" || exit 1

0 commit comments

Comments
 (0)