mirror of
https://github.com/fleetdm/fleet
synced 2026-05-23 17:08:53 +00:00
Fix bug in running orbit on Linux (#1815)
Mkbom was referencing a non-existant folder, updated to point at the correct folder.
This commit is contained in:
parent
2fd725c81b
commit
a9592117a5
1 changed files with 1 additions and 1 deletions
|
|
@ -232,7 +232,7 @@ func xarBom(opt Options, rootPath string) error {
|
|||
case "darwin":
|
||||
cmdMkbom = exec.Command("mkbom", filepath.Join(rootPath, "root"), filepath.Join("flat", "base.pkg", "Bom"))
|
||||
case "linux":
|
||||
cmdMkbom = exec.Command("mkbom", "-u", "0", "-g", "80", filepath.Join(rootPath, "flat", "root"), filepath.Join("flat", "base.pkg", "Bom"))
|
||||
cmdMkbom = exec.Command("mkbom", "-u", "0", "-g", "80", filepath.Join(rootPath, "root"), filepath.Join("flat", "base.pkg", "Bom"))
|
||||
}
|
||||
cmdMkbom.Dir = rootPath
|
||||
cmdMkbom.Stdout = os.Stdout
|
||||
|
|
|
|||
Loading…
Reference in a new issue