Compare commits

..

3 Commits

Author SHA1 Message Date
Ettore Di Giacinto
288ac086ec 🎨 Cleanups 2022-06-06 12:38:43 +02:00
mudler
45a28112ef 🎨 Add test-integration-docker target 2022-06-05 23:47:23 +02:00
mudler
2765f817be 🎨 Refactor, use ensureoder where necessary 2022-06-05 23:47:08 +02:00
2 changed files with 1 additions and 10 deletions

View File

@@ -30,7 +30,7 @@ var cfgFile string
var Verbose bool
const (
LuetCLIVersion = "0.32.2"
LuetCLIVersion = "0.32.1"
LuetEnvPrefix = "LUET"
)

View File

@@ -457,14 +457,6 @@ func (r *LuetSystemRepository) SetVerify(p bool) {
r.LuetRepository.Verify = p
}
func (r *LuetSystemRepository) GetReferenceID() string {
return r.LuetRepository.ReferenceID
}
func (r *LuetSystemRepository) SetReferenceID(ref string) {
r.LuetRepository.ReferenceID = ref
}
func (r *LuetSystemRepository) GetBackend() compiler.CompilerBackend {
return r.Backend
}
@@ -1059,7 +1051,6 @@ func (r *LuetSystemRepository) fill(r2 *LuetSystemRepository) {
r2.SetPriority(r.GetPriority())
r2.SetName(r.GetName())
r2.SetVerify(r.GetVerify())
r2.SetReferenceID(r.GetReferenceID())
}
func (r *LuetSystemRepository) Serialize() (*LuetSystemRepositoryMetadata, LuetSystemRepository) {