(self)
| 1900 | |
| 1901 | # Specifies the target directory this tool will be installed to. |
| 1902 | def installation_dir(self): |
| 1903 | dir = self.installation_path() |
| 1904 | if path_points_to_directory(dir): |
| 1905 | return dir |
| 1906 | else: |
| 1907 | return os.path.dirname(dir) |
| 1908 | |
| 1909 | # Returns the configuration item that needs to be added to .emscripten to make |
| 1910 | # this Tool active for the current user. |
no test coverage detected