Skip to content

Commit 504e625

Browse files
authored
Merge pull request #4375 from camilamacedo86/fix-force-flag
🐛 (helm/v1alpha): fix default value of the force flag
2 parents 4d82257 + 4299607 commit 504e625

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)