mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-07-26 06:38:42 +00:00
10 lines
140 B
Go
10 lines
140 B
Go
//go:build !windows
|
|
|
|
package builder
|
|
|
|
import "os"
|
|
|
|
func robustRename(oldpath, newpath string) error {
|
|
return os.Rename(oldpath, newpath)
|
|
}
|