Initial commit
This commit is contained in:
10
vendor/github.com/hyperhq/hypercli/pkg/ioutils/temp_unix.go
generated
vendored
Normal file
10
vendor/github.com/hyperhq/hypercli/pkg/ioutils/temp_unix.go
generated
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
// +build !windows
|
||||
|
||||
package ioutils
|
||||
|
||||
import "io/ioutil"
|
||||
|
||||
// TempDir on Unix systems is equivalent to ioutil.TempDir.
|
||||
func TempDir(dir, prefix string) (string, error) {
|
||||
return ioutil.TempDir(dir, prefix)
|
||||
}
|
||||
Reference in New Issue
Block a user