Skip to content

Commit

Permalink
fix(pkg): Prioritize kernel packaging
Browse files Browse the repository at this point in the history
This commit re-orders the kernel packager to be first such that
it can be used in the context of an existing working directory.
Since the kernel is a known flag, we can safely assume that
the user knows what they are doing and can allow them to
manipulate the package manager directly.

Signed-off-by: Alexander Jung <[email protected]>
  • Loading branch information
nderjung committed Nov 21, 2024
1 parent b64f58f commit 881f02b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/cli/kraft/pkg/packager.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@ type packager interface {
// is used with the controller.
func packagers() []packager {
return []packager{
&packagerCliKernel{},
&packagerKraftfileUnikraft{},
&packagerKraftfileRuntime{},
&packagerCliKernel{},
&packagerDockerfile{},
}
}

0 comments on commit 881f02b

Please sign in to comment.