github.com/cli/cli@v1.14.1-0.20210902173923-1af6a669e342/pkg/cmd/extension/symlink_other.go (about)

     1  // +build !windows
     2  
     3  package extension
     4  
     5  import "os"
     6  
     7  func makeSymlink(oldname, newname string) error {
     8  	return os.Symlink(oldname, newname)
     9  }