Skip to content

Commit

Permalink
fix: output error when purging autocompletion data
Browse files Browse the repository at this point in the history
Signed-off-by: Luka Brecic <[email protected]>
  • Loading branch information
lbrecic committed Sep 27, 2024
1 parent 0487f4c commit 94bf752
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/cmd/purge.go
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ var purgeCmd = &cobra.Command{
fmt.Println("Deleting autocompletion data")
err = config.DeleteAutocompletionData()
if err != nil {
return err
fmt.Printf("Error deleting autocompletion data: %s\n", err)
}

fmt.Println("Deleting the Daytona config directory")
Expand Down

0 comments on commit 94bf752

Please sign in to comment.