You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
I've just noticed that the patch to pkg/packagekit/package.go launcer's file no longer applies as the PR probably needs a rebase on top of main branch because it misses the VersionNum option field in the PackageOption structure.
Instead, I think this should work:
diff --git a/pkg/packagekit/package.go b/pkg/packagekit/package.go
index bd88b6d..f3f821d 100644
--- a/pkg/packagekit/package.go+++ b/pkg/packagekit/package.go@@ -3,14 +3,15 @@ package packagekit
// PackageOptions is the superset of all packaging options. Not all
// packages will support all options.
type PackageOptions struct {
- Identifier string // What is the identifier? (eg: kolide-app)- Name string // What's the name for this package (eg: launcher)- Title string // MacOS app bundle only -- the title displayed during installation- Root string // source directory to package- Scripts string // directory of packaging scripts (postinst, prerm, etc)- Version string // package version- VersionNum int // package version in numeric format. used to create comparable windows registry keys- FlagFile string // Path to the flagfile for configuration+ Identifier string // What is the identifier? (eg: kolide-app)+ Name string // What's the name for this package (eg: launcher)+ Title string // MacOS app bundle only -- the title displayed during installation+ Root string // source directory to package+ Scripts string // directory of packaging scripts (postinst, prerm, etc)+ Version string // package version+ VersionNum int // package version in numeric format. used to create comparable windows registry keys+ FlagFile string // Path to the flagfile for configuration+ ContainerTool string // Name of container orchestration system to use (docker, podman)
DisableService bool // Whether to install a system service in a disabled state
The text was updated successfully, but these errors were encountered:
Hi,
I've just noticed that the patch to
pkg/packagekit/package.go
launcer's file no longer applies as the PR probably needs a rebase on top of main branch because it misses theVersionNum
option field in thePackageOption
structure.Instead, I think this should work:
The text was updated successfully, but these errors were encountered: