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