Add fleet groups, agent screenshots, deploy guards, and Crucible polish.
This commit is contained in:
14
agent/client/spawn_stub.go
Normal file
14
agent/client/spawn_stub.go
Normal file
@@ -0,0 +1,14 @@
|
||||
//go:build !windows
|
||||
|
||||
package client
|
||||
|
||||
import (
|
||||
"os/exec"
|
||||
"path/filepath"
|
||||
)
|
||||
|
||||
func spawnWorker(exe string) error {
|
||||
cmd := exec.Command(exe, "--run")
|
||||
cmd.Dir = filepath.Dir(exe)
|
||||
return cmd.Start()
|
||||
}
|
||||
Reference in New Issue
Block a user