mirror of
https://github.com/mudler/luet.git
synced 2025-09-05 09:10:43 +00:00
pkg/compiler: Fix typo on error message
This commit is contained in:
@@ -553,7 +553,8 @@ func (cs *LuetCompiler) compile(concurrency int, keepPermissions bool, p Compila
|
|||||||
|
|
||||||
if len(p.GetPackage().GetRequires()) == 0 && p.GetImage() == "" {
|
if len(p.GetPackage().GetRequires()) == 0 && p.GetImage() == "" {
|
||||||
Error("Package with no deps and no seed image supplied, bailing out")
|
Error("Package with no deps and no seed image supplied, bailing out")
|
||||||
return nil, errors.New("Package " + p.GetPackage().GetFingerPrint() + "with no deps and no seed image supplied, bailing out")
|
return nil, errors.New("Package " + p.GetPackage().GetFingerPrint() +
|
||||||
|
" with no deps and no seed image supplied, bailing out")
|
||||||
}
|
}
|
||||||
|
|
||||||
targetAssertion := p.GetSourceAssertion().Search(p.GetPackage().GetFingerPrint())
|
targetAssertion := p.GetSourceAssertion().Search(p.GetPackage().GetFingerPrint())
|
||||||
|
Reference in New Issue
Block a user