Skip to content

Commit

Permalink
fix: no-config logic
Browse files Browse the repository at this point in the history
  • Loading branch information
fentas committed Apr 4, 2024
1 parent 9c62970 commit c35d14f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/cli/cli.go
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ func (o *CmdBinaryOptions) Complete(cmd *cobra.Command, args []string) error {
}
} else if o.all {
for b, do := range o.ensure {
if !o.NoConfig || b.BinaryExists() {
if o.NoConfig || b.BinaryExists() {
*do = true
}
}
Expand Down

0 comments on commit c35d14f

Please sign in to comment.