Files
libmutton/core/targetLocationFormatUNIX.go
T

9 lines
265 B
Go

//go:build !windows
package core
// TargetLocationFormat returns the full location of an entry (given the name) formatted for the current platform.
func TargetLocationFormat(targetLocationIncomplete string) string {
return EntryRoot + targetLocationIncomplete
}