copySourceDependencies needs to be run every time (#1617)

This fixes the nightly builds
This commit is contained in:
Andrew Wang
2018-02-27 15:58:20 -08:00
committed by GitHub
parent 6756be66d5
commit 6ad4814173
+3 -2
View File
@@ -18,6 +18,7 @@ if (!process.env.CPPTOOLS_DEV && fs.existsSync('./node_modules')) {
cp.execSync("npm install", {stdio:[0, 1, 2]});
console.log(">> tsc -p ./");
cp.execSync("tsc -p ./", {stdio:[0, 1, 2]});
console.log(">> node ./out/src/Support/copyDebuggerDependencies.js");
cp.execSync("node ./out/src/Support/copyDebuggerDependencies.js", {stdio:[0, 1, 2]});
}
// Required for nightly builds. Nightly builds do not enable CPPTOOLS_DEV.
console.log(">> node ./out/src/Support/copyDebuggerDependencies.js");
cp.execSync("node ./out/src/Support/copyDebuggerDependencies.js", {stdio:[0, 1, 2]});