status-go/vendor/github.com/ipfs/go-log/v2/path_other.go

13 lines
155 B
Go

//go:build !windows
// +build !windows
package log
import (
"path/filepath"
)
func normalizePath(p string) (string, error) {
return filepath.Abs(p)
}