mirror of
https://github.com/fleetdm/fleet
synced 2026-04-21 21:47:20 +00:00
* Download and launch orbit for the current device when starting preview * Add windows kill * Fix imports * Fix import * Disable secure directory checks on windows for now * Add missing import
10 lines
147 B
Go
10 lines
147 B
Go
//go:build !windows
|
|
// +build !windows
|
|
|
|
package main
|
|
|
|
import "syscall"
|
|
|
|
func killPID(pid int) error {
|
|
return syscall.Kill(pid, syscall.SIGKILL)
|
|
}
|