(projectPath: string, workspaceName: string)
| 1188 | } |
| 1189 | |
| 1190 | getWorkspacePath(projectPath: string, workspaceName: string): string { |
| 1191 | if ( |
| 1192 | this.currentWorkspacePath && |
| 1193 | this.ensureReadyProjectPath === projectPath && |
| 1194 | this.ensureReadyWorkspaceName === workspaceName |
| 1195 | ) { |
| 1196 | return this.currentWorkspacePath; |
| 1197 | } |
| 1198 | |
| 1199 | return getRemoteWorkspacePath(this.getProjectLayout(projectPath), workspaceName); |
| 1200 | } |
| 1201 | |
| 1202 | /** |
| 1203 | * Path to the shared bare repo for a project on the remote. |
no test coverage detected