BinDir returns the directory where tool binaries/symlinks are placed. This is ToolsDir()/bin/
()
| 20 | // BinDir returns the directory where tool binaries/symlinks are placed. |
| 21 | // This is ToolsDir()/bin/ |
| 22 | func BinDir() string { |
| 23 | return filepath.Join(ToolsDir(), "bin") |
| 24 | } |
| 25 | |
| 26 | // PackageDir returns the directory for a specific package version. |
| 27 | // This is ToolsDir()/packages/<owner>/<repo>/<version>/ |