1
0
Fork 0

fix: change return values of macos placeholder

timestamps
dump_stack() 2023-05-23 22:44:25 +00:00
parent c35def964e
commit 66d45e69d9
Signed by: dump_stack
GPG Key ID: BE44DA8C062D87DC
1 changed files with 2 additions and 2 deletions

View File

@ -10,10 +10,10 @@ package kernel
import (
"errors"
"code.dumpstack.io/tools/out-of-tree/config"
"code.dumpstack.io/tools/out-of-tree/distro"
)
func GenHostKernels(download bool) (kcfg config.KernelConfig, err error) {
func GenHostKernels(download bool) (kernels []distro.KernelInfo, err error) {
err = errors.New("generate host kernels for macOS is not supported")
return
}