fix: nil check not needed on bool
Signed-off-by: Manetheren <git@manetheren.io>
This commit is contained in:
parent
7560e5bd4e
commit
b29f213acd
|
|
@ -761,7 +761,7 @@ func (st *HelmState) prepareSyncReleases(helm helmexec.Interface, additionalValu
|
|||
}
|
||||
}
|
||||
|
||||
if st.HelmDefaults.SkipCRDs != nil && st.HelmDefault.SkipCRDs || opts.SkipCRDs {
|
||||
if st.HelmDefault.SkipCRDs || opts.SkipCRDs {
|
||||
flags = append(flags, "--skip-crds")
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue