Files
sandwich-hime/internal/compiler/replace_unix.go
T
2026-08-11 20:15:06 -04:00

11 lines
198 B
Go

// SPDX-License-Identifier: AGPL-3.0-only
//go:build !windows
package compiler
import "os"
func replaceFile(replacement, destination string) error {
return os.Rename(replacement, destination)
}