From 1f43a673df346aafbbb108a4e02a1332a61c1f1b Mon Sep 17 00:00:00 2001 From: Asher Date: Wed, 4 Mar 2020 16:07:26 -0600 Subject: [PATCH] Always build extensions on CI --- ci/build.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/build.ts b/ci/build.ts index 649bbe05e..1fa96ebee 100644 --- a/ci/build.ts +++ b/ci/build.ts @@ -148,7 +148,7 @@ class Builder { await this.task("building builtin extensions", async () => { const exists = await fs.pathExists(path.join(this.vscodeSourcePath, ".build/extensions")) - if (exists) { + if (exists && !process.env.CI) { process.stdout.write("already built, skipping...") } else { await util.promisify(cp.exec)("yarn gulp compile-extensions-build", { cwd: this.vscodeSourcePath })