mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-27 12:04:04 +01:00
Fix cloning with specific branch (#164619)
This commit is contained in:
@@ -457,7 +457,7 @@ export class Git {
|
||||
command.push('--recursive');
|
||||
}
|
||||
if (options.ref) {
|
||||
command.push('--branch', `'${options.ref}'`);
|
||||
command.push('--branch', options.ref);
|
||||
}
|
||||
await this.exec(options.parentPath, command, {
|
||||
cancellationToken,
|
||||
|
||||
Reference in New Issue
Block a user