diff --git a/orbit/pkg/packaging/macos.go b/orbit/pkg/packaging/macos.go index 1c3d930ae5..c0507b8eac 100644 --- a/orbit/pkg/packaging/macos.go +++ b/orbit/pkg/packaging/macos.go @@ -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