Skip to content

Commit

Permalink
Fixed commit author email for release scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
dacuster committed Jan 31, 2025
1 parent 5d453fc commit 5d9d392
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion BuildScripts/prerelease.sh
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ git add --all

# Only commit if there are changes
if ! git diff-index --quiet HEAD --; then
git commit -m "Pre-release updates for release ${project_release_version}." --author="microstrain-build"
git commit -m "Pre-release updates for release ${project_release_version}." --author="microstrain-build <[email protected]>"

GIT_ASKPASS="${git_askpass_file}" git push origin ${target}
else
Expand Down
2 changes: 1 addition & 1 deletion BuildScripts/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ git add --all

# Only commit if there are changes
if ! git diff-index --quiet HEAD --; then
git commit -m "Adds/updates documentation for release ${release_name} at ${repo}@${mscl_commit}." --author="microstrain-build"
git commit -m "Adds/updates documentation for release ${release_name} at ${repo}@${mscl_commit}." --author="microstrain-build <[email protected]>"

GIT_ASKPASS="${git_askpass_file}" git push origin main
else
Expand Down

0 comments on commit 5d9d392

Please sign in to comment.