fix another issue

This commit is contained in:
2016-06-10 05:43:27 +02:00
parent b318fa2076
commit 6827999cf8
2 changed files with 3 additions and 3 deletions

View File

@ -9,7 +9,7 @@ let doAnimation:boolean = true;
let doText:boolean = false;
if(process.argv.indexOf("-v") != -1 || process.env.CI){
doAnimation = false;
} else if(process.argv.indexOf("-v") != -1){
} else if(process.argv.indexOf("-v") == -1){
doText = true;
}