aboutsummaryrefslogtreecommitdiff
path: root/weed/command/filer_sync_windows.go
blob: 3d0c9146ec49053e95017bea174049ba9e38a2c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package command

import (
	"strings"
)

func escapeKey(key string) string {
	if strings.Contains(key, ":") {
		return strings.ReplaceAll(key, ":", "")
	}
	return key
}