blob: 818004f26c049e6b403a0d2bb13e9c236a019185 [file] [log] [blame]
// +build !windows
package symlink
import (
"path/filepath"
)
func evalSymlinks(path string) (string, error) {
return filepath.EvalSymlinks(path)
}