mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-08-09 21:43:40 +00:00
all: add support for Go 1.17
This commit is contained in:
committed by
Ron Evans
parent
d45497691f
commit
8e88e560a1
@@ -24,6 +24,11 @@ func Mkdir(path string, perm FileMode) error {
|
||||
return nil
|
||||
}
|
||||
|
||||
// MkdirTemp is a stub, it will always return an error.
|
||||
func MkdirTemp(dir, pattern string) (string, error) {
|
||||
return "", &PathError{"mkdirtemp", dir, ErrNotImplemented}
|
||||
}
|
||||
|
||||
// Remove removes a file or (empty) directory. If the operation fails, it will
|
||||
// return an error of type *PathError.
|
||||
func Remove(path string) error {
|
||||
|
||||
Reference in New Issue
Block a user