Add cli option to skip packages if only metadata is present (without checking the image)

This commit is contained in:
Ettore Di Giacinto
2020-07-17 22:42:03 +02:00
parent 3af9109b99
commit 07a1058ac1
3 changed files with 8 additions and 4 deletions

View File

@@ -52,9 +52,10 @@ type CompilerOptions struct {
Clean bool
KeepImageExport bool
OnlyDeps bool
NoDeps bool
SolverOptions config.LuetSolverOptions
OnlyDeps bool
NoDeps bool
SolverOptions config.LuetSolverOptions
SkipIfMetadataExists bool
}
func NewDefaultCompilerOptions() *CompilerOptions {