12 lines
153 B
Go
12 lines
153 B
Go
|
// +build !windows
|
||
|
|
||
|
package symlink
|
||
|
|
||
|
import (
|
||
|
"path/filepath"
|
||
|
)
|
||
|
|
||
|
func evalSymlinks(path string) (string, error) {
|
||
|
return filepath.EvalSymlinks(path)
|
||
|
}
|