Archived
1
0

Update to vscode 1.31.1 (#45)

This commit is contained in:
Kyle Carberry
2019-03-06 11:10:23 -08:00
committed by GitHub
parent d4867ca430
commit 8916cb9bb2
3 changed files with 10 additions and 10 deletions

View File

@ -224,7 +224,7 @@ const ensureCloned = register("vscode:clone", async (runner) => {
}
runner.cwd = vscodePath;
const checkout = await runner.execute("git", ["checkout", "tags/1.31.0"]);
const checkout = await runner.execute("git", ["checkout", "tags/1.31.1"]);
if (checkout.exitCode !== 0) {
throw new Error(`Failed to checkout: ${checkout.stderr}`);
}