(cliHost: CLIHost, folderPath: string, mountWorkspaceGitRoot: boolean, output: Log)
| 398 | } |
| 399 | |
| 400 | export async function getHostMountFolder(cliHost: CLIHost, folderPath: string, mountWorkspaceGitRoot: boolean, output: Log): Promise<string> { |
| 401 | return mountWorkspaceGitRoot && await findGitRootFolder(cliHost, folderPath, output) || folderPath; |
| 402 | } |
| 403 | |
| 404 | export interface WorkspaceConfiguration { |
| 405 | workspaceMount: string | undefined; |
no test coverage detected