(self)
| 1890 | # Specifies the target path where this tool will be installed to. This could |
| 1891 | # either be a directory or a filename (e.g. in case of node.js) |
| 1892 | def installation_path(self): |
| 1893 | if self.install_path: |
| 1894 | pth = self.expand_vars(self.install_path) |
| 1895 | return sdk_path(pth) |
| 1896 | p = self.version |
| 1897 | if self.bitness and self.append_bitness: |
| 1898 | p += f'_{self.bitness}bit' |
| 1899 | return sdk_path(os.path.join(self.id, p)) |
| 1900 | |
| 1901 | # Specifies the target directory this tool will be installed to. |
| 1902 | def installation_dir(self): |
no test coverage detected