Skip to content

Commit f31e615

Browse files
committed
Fix the script to not change the user email
1 parent 4bd7075 commit f31e615

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

convert-to-heed3.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ for file in $(find heed/src -type f -name "*.rs"); do
2828
done
2929

3030
# Make it easier to rollback by doing a commit
31-
git config --global user.email "[email protected]"
32-
git config --global user.name "The CI"
31+
git config --local user.email "[email protected]"
32+
git config --local user.name "The CI"
3333
git commit -am 'remove-me: heed3 changes generate by the convert-to-heed3.sh script'
3434

3535
echo "Heed3 crate setup completed successfully. Configurations for the heed crate have been copied and modified."

0 commit comments

Comments
 (0)