mirror of
https://github.com/rclone/rclone
synced 2024-11-12 10:50:08 +01:00
7c01bbddf8
Fixes #194 Fixes #451 Fixes #463
13 lines
250 B
Go
13 lines
250 B
Go
// +build darwin
|
|
|
|
package local
|
|
|
|
import (
|
|
"golang.org/x/text/unicode/norm"
|
|
)
|
|
|
|
// normString normalises the remote name as some OS X denormalises UTF-8 when storing it to disk
|
|
func normString(remote string) string {
|
|
return norm.NFC.String(remote)
|
|
}
|