Skip to content

Commit

Permalink
fix: remove unnecessary change to error message
Browse files Browse the repository at this point in the history
Removed unnecessary change to the error message.
  • Loading branch information
opdude authored and lbajolet-hashicorp committed Jul 7, 2023
1 parent 85a117f commit 663b793
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion builder/googlecompute/step_create_image.go
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ func (s *StepCreateImage) Run(ctx context.Context, state multistep.StateBag) mul
}

if err != nil {
err := fmt.Errorf("Error waiting for image: %s in", err)
err := fmt.Errorf("Error waiting for image: %s", err)
state.Put("error", err)
ui.Error(err.Error())
return multistep.ActionHalt
Expand Down

0 comments on commit 663b793

Please # to comment.