Skip to content

Commit

Permalink
fix(ui): installation spinner shouldn't draw new lines
Browse files Browse the repository at this point in the history
  • Loading branch information
artemijspavlovs committed Sep 18, 2024
1 parent 1be4b7c commit 62e25db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/dependencies/dependencies.go
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ func InstallBinaryFromRepo(dep types.Dependency, td string) error {

func InstallBinaryFromRelease(dep types.Dependency) error {
spinner, _ := pterm.DefaultSpinner.Start(
fmt.Sprintf("Installing %s\n", dep.Name),
fmt.Sprintf("Installing %s", dep.Name),
)
goOs := strings.Title(runtime.GOOS)
goArch := strings.ToLower(runtime.GOARCH)
Expand Down

0 comments on commit 62e25db

Please sign in to comment.