Skip to content

Commit

Permalink
fix: use formatted println for stack exists error
Browse files Browse the repository at this point in the history
  • Loading branch information
jardon committed Nov 1, 2024
1 parent 1ae5a88 commit ac2dfe6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/stacks.go
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ func newStack(cmd *cobra.Command, args []string) error {

ok := core.StackExists(name)
if ok {
cmdr.Error.Println(apx.Trans("stacks.new.error.alreadyExists"))
cmdr.Error.Printfln(apx.Trans("stacks.new.error.alreadyExists"), name)
return nil
}

Expand Down

0 comments on commit ac2dfe6

Please sign in to comment.