updated for unix build

This commit is contained in:
redanthrax 2022-06-22 13:53:50 -07:00
parent 66aca05028
commit e20edcc9ad
37 changed files with 1001 additions and 257 deletions

12
agent/choco/choco_unix.go Normal file
View file

@ -0,0 +1,12 @@
//go:build !windows
// +build !windows
package choco
//stubbed out for rpc
func InstallChoco() error {
return nil
}
func InstallWithChoco(name string) (string, error) {
return "", nil
}