Skip to content

Commit

Permalink
Fixed incorrect commit message operations.
Browse files Browse the repository at this point in the history
  • Loading branch information
mitchell-as committed Oct 28, 2024
1 parent 20f29c8 commit a160ff7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion internal/runners/platforms/remove.go
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ func (a *Remove) Run(params RemoveRunParams) (rerr error) {
}

// Update local checkout and source runtime changes
if err := reqop_runbit.UpdateAndReload(a.prime, script, oldCommit, locale.Tr("commit_message_added", params.Platform.String()), trigger.TriggerPlatform); err != nil {
if err := reqop_runbit.UpdateAndReload(a.prime, script, oldCommit, locale.Tr("commit_message_removed", params.Platform.String()), trigger.TriggerPlatform); err != nil {
return errs.Wrap(err, "Failed to update local checkout")
}

Expand Down
2 changes: 1 addition & 1 deletion internal/runners/uninstall/uninstall.go
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ func (u *Uninstall) Run(params Params) (rerr error) {
pg = nil

// Update local checkout and source runtime changes
if err := reqop_runbit.UpdateAndReload(u.prime, script, oldCommit, locale.Tr("commit_message_added", params.Packages.String()), trigger.TriggerUninstall); err != nil {
if err := reqop_runbit.UpdateAndReload(u.prime, script, oldCommit, locale.Tr("commit_message_removed", params.Packages.String()), trigger.TriggerUninstall); err != nil {
return errs.Wrap(err, "Failed to update local checkout")
}

Expand Down

0 comments on commit a160ff7

Please sign in to comment.