fleet/pkg/secure/secure_windows.go
Tomas Touceda b11c6ffe31
Download and launch orbit for the current device when starting preview (#2437)
* 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
2021-10-15 18:23:06 -03:00

15 lines
270 B
Go

//go:build windows
// +build windows
package secure
import "os"
func MkdirAll(path string, perm os.FileMode) error {
return os.MkdirAll(path, perm)
}
func OpenFile(name string, flag int, perm os.FileMode) (*os.File, error) {
return os.OpenFile(name, flag, perm)
}