Skip to content

Commit 4299607

Browse files
(helm/v1alpha): fix default value of the force flag
The force flag must have by default the value false. So that, we just overwritten the files when we it is informed
1 parent 794c846 commit 4299607

File tree

1 file changed

+1
-1
lines changed
  • pkg/plugins/optional/helm/v1alpha

1 file changed

+1
-1
lines changed

pkg/plugins/optional/helm/v1alpha/edit.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ manifests in the chart align with the latest changes.
6565
}
6666

6767
func (p *editSubcommand) BindFlags(fs *pflag.FlagSet) {
68-
fs.BoolVar(&p.force, "force", true, "if true, regenerates all the files")
68+
fs.BoolVar(&p.force, "force", false, "if true, regenerates all the files")
6969
}
7070

7171
func (p *editSubcommand) InjectConfig(c config.Config) error {

0 commit comments

Comments
 (0)