another small fix

This commit is contained in:
2016-05-23 05:11:03 +02:00
parent 96c421e96e
commit 9c6e452801
2 changed files with 7 additions and 5 deletions

View File

@ -34,13 +34,14 @@ let logEarly = () => {
rl.write(makeFrame());
setTimeout(function(){
logEarly();
},200);
},80);
};
let start = function(moduleNameArg:string = "",loaderLengthArg:string = "10"){
console.log(process.env.CI)
moduleName = moduleNameArg;
loaderLength = parseInt(loaderLengthArg);
if (!process.env.CI){
if (process.env.CI == "undefined"){
initReadline();
logEarly();
} else {