We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 94ff8f0 commit 330e595Copy full SHA for 330e595
scripts/download_vsix.ts
@@ -59,5 +59,9 @@ const repo = repository.split("/")[1];
59
const newName = process.env["VSCODE_SWIFT_VSIX"] || "vscode-swift.vsix";
60
await rename(files[0].path, newName);
61
console.log(`Renamed artifact: ${files[0].path} => ${newName}`);
62
+ const preNewName =
63
+ process.env["VSCODE_SWIFT_PRERELEASE_VSIX"] || "vscode-swift-prerelease.vsix";
64
+ await rename(files[1].path, preNewName);
65
+ console.log(`Renamed artifact: ${files[1].path} => ${preNewName}`);
66
await unlink("artifacts.zip");
67
})();
0 commit comments