x-motemen.ghq/helpers_unix.go
walnuts1018 231448ee85 add windows symlink & junction support
Signed-off-by: walnuts1018 <r.juglans.1018@gmail.com>
2024-10-27 00:19:49 +09:00

14 lines
208 B
Go

//go:build !windows
package main
import "path/filepath"
func toFullPath(s string) (string, error) {
return s, nil
}
func evalSymlinks(path string) (string, error) {
return filepath.EvalSymlinks(path)
}