Compile build scripts too

This commit is contained in:
Matt Bierner
2025-10-02 23:46:45 -07:00
parent a4fbc54f29
commit 1174f9b951
19 changed files with 44 additions and 2 deletions

View File

@@ -73,6 +73,7 @@ async function fetchUrl(options, retries = 10, retryDelay = 1000) {
try {
const response = await fetch(`https://api.github.com/repos/Microsoft/vscode-linux-build-agent/releases/tags/v${version}`, {
headers: ghApiHeaders,
// eslint-disable-next-line local/code-no-any-casts
signal: controller.signal /* Typings issue with lib.dom.d.ts */
});
if (response.ok && (response.status >= 200 && response.status < 300)) {