2021-06-26 06:18:11 +02:00

12 lines
134 B
Go

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