-
Notifications
You must be signed in to change notification settings - Fork 58
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed commit author email for release scripts
- Loading branch information
Showing
2 changed files
with
2 additions
and
2 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 |
---|---|---|
|
@@ -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 | ||
|
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 |
---|---|---|
|
@@ -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 | ||
|