Skip to content

Commit

Permalink
fix && to || (#6354)
Browse files Browse the repository at this point in the history
  • Loading branch information
MarlonGamez authored Aug 3, 2021
1 parent 8d4ca0d commit 1e3da21
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/skaffold/app/cmd/cmd.go
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ func NewSkaffoldCommand(out, errOut io.Writer) *cobra.Command {
return nil
},
PersistentPostRun: func(cmd *cobra.Command, args []string) {
if isQuietMode() && !isHouseKeepingMessagesAllowed(cmd) {
if isQuietMode() || !isHouseKeepingMessagesAllowed(cmd) {
return
}
select {
Expand Down

0 comments on commit 1e3da21

Please sign in to comment.