Skip to content

Commit

Permalink
fix: breaking change output of store import cmd (#355)
Browse files Browse the repository at this point in the history
  • Loading branch information
ewanharris authored Jun 25, 2024
2 parents 9c09864 + 2d81b67 commit 468164c
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions cmd/store/import.go
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,7 @@ func importStore(

// Initialize progress bar
bar := progressbar.NewOptions(len(storeData.Tuples),
progressbar.OptionSetWriter(os.Stderr),
progressbar.OptionSetDescription("Importing tuples"),
progressbar.OptionShowCount(),
progressbar.OptionSetWidth(progressBarWidth),
Expand Down Expand Up @@ -183,8 +184,6 @@ func importStore(
return nil, fmt.Errorf("failed to finish progress bar: %w", err)
}

fmt.Println("✅ Store imported")

return response, nil
}

Expand Down

0 comments on commit 468164c

Please sign in to comment.