Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions internal/runners/commit/commit.go
Original file line number Diff line number Diff line change
Expand Up @@ -141,11 +141,10 @@ func (c *Commit) Run(params *Params) (rerr error) {
if err != nil {
return errs.Wrap(err, "Could not update project to reflect build script changes.")
}
pg.Stop(locale.T("progress_success"))
pg = nil

if !params.SkipValidation {
pg.Stop(locale.T("progress_success"))
pg = nil

pgSolve := output.StartSpinner(out, locale.T("progress_solve"), constants.TerminalAnimationInterval)
defer func() {
if pgSolve != nil {
Expand Down
Loading