mirror of
https://github.com/rwinkhart/MUTN.git
synced 2026-08-28 04:46:41 -04:00
14 lines
266 B
Go
14 lines
266 B
Go
//go:build windows
|
|
|
|
package sync
|
|
|
|
import (
|
|
"fmt"
|
|
"strings"
|
|
)
|
|
|
|
// printToStdout prints a string to stdout with UNIX path separators
|
|
func printToStdout(targetLocationIncomplete string) {
|
|
fmt.Print("\x1f" + strings.ReplaceAll(targetLocationIncomplete, "\\", "/"))
|
|
}
|