Signed-off-by: Stefan J. Wernli <swernli@microsoft.com> Upstream-commit: 9b648dfac6453de5944ee4bb749115d85a253a05 Component: engine
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)
|
|
}
|