1// Copyright 2017 The Go Authors. All rights reserved. 2// Use of this source code is governed by a BSD-style 3// license that can be found in the LICENSE file. 4 5package load 6 7import ( 8 "path/filepath" 9) 10 11// expandPath returns the symlink-expanded form of path. 12func expandPath(p string) string { 13 x, err := filepath.EvalSymlinks(p) 14 if err == nil { 15 return x 16 } 17 return p 18} 19