Files
tinygo/builder/robustio_other.go

10 lines
140 B
Go

//go:build !windows
package builder
import "os"
func robustRename(oldpath, newpath string) error {
return os.Rename(oldpath, newpath)
}