Skip to content

Commit 6ad4814

Browse files
authored
copySourceDependencies needs to be run every time (#1617)
This fixes the nightly builds
1 parent 6756be6 commit 6ad4814

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

Extension/src/Support/prepublish.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ if (!process.env.CPPTOOLS_DEV && fs.existsSync('./node_modules')) {
1818
cp.execSync("npm install", {stdio:[0, 1, 2]});
1919
console.log(">> tsc -p ./");
2020
cp.execSync("tsc -p ./", {stdio:[0, 1, 2]});
21-
console.log(">> node ./out/src/Support/copyDebuggerDependencies.js");
22-
cp.execSync("node ./out/src/Support/copyDebuggerDependencies.js", {stdio:[0, 1, 2]});
2321
}
22+
// Required for nightly builds. Nightly builds do not enable CPPTOOLS_DEV.
23+
console.log(">> node ./out/src/Support/copyDebuggerDependencies.js");
24+
cp.execSync("node ./out/src/Support/copyDebuggerDependencies.js", {stdio:[0, 1, 2]});

0 commit comments

Comments
 (0)