add conflict check

This commit is contained in:
Donny Xia
2021-03-24 10:41:37 -07:00
parent 5ed2067be9
commit ccb95ab269
3 changed files with 44 additions and 4 deletions

View File

@@ -39,6 +39,9 @@ func RunFix(fSys filesys.FileSystem) error {
return err
}
m.FixKustomizationPreMarshalling()
err = m.FixKustomizationPreMarshalling()
if err != nil {
return err
}
return mf.Write(m)
}