Skip to content

Commit

Permalink
fix(setup/domain): fix progress ticker output
Browse files Browse the repository at this point in the history
  • Loading branch information
Integralist committed Feb 9, 2023
1 parent b1d859f commit 3e6c643
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/commands/compute/setup/domain.go
Original file line number Diff line number Diff line change
Expand Up @@ -154,8 +154,8 @@ func (d *Domains) validateDomain(input string) error {
func (d *Domains) createDomain(name string, attempt int) error {
if attempt > 1 {
d.Progress = text.ResetProgress(d.Stdout, d.Verbose)
d.Progress.Step(fmt.Sprintf("Creating domain '%s'...", name))
}
d.Progress.Step(fmt.Sprintf("Creating domain '%s'...", name))

_, err := d.APIClient.CreateDomain(&fastly.CreateDomainInput{
ServiceID: d.ServiceID,
Expand Down

0 comments on commit 3e6c643

Please sign in to comment.