fixed CI detection in child process

This commit is contained in:
2016-05-23 05:02:49 +02:00
parent 6bb20dbc7b
commit 84af99ba80
3 changed files with 6 additions and 5 deletions

View File

@ -9,7 +9,8 @@ export let start = function(moduleNameArg:string = "",loaderLengthArg:string = "
earlyChild = childProcess.fork(path.join(__dirname,"early.child.js"),[],{
env: {
moduleNameArg:moduleNameArg,
loaderLengthArg:loaderLengthArg
loaderLengthArg:loaderLengthArg,
CI: process.env.CI
}
});
};