1
0
Fork 0
mirror of https://github.com/betaflight/betaflight-configurator.git synced 2025-07-16 12:55:14 +03:00

Add npm test to travis ci

This commit is contained in:
Adem Gaygusuz 2018-06-01 17:46:10 +01:00
parent aff6f3c8a1
commit 2e5bdae80e
5 changed files with 21 additions and 7 deletions

View file

@ -256,14 +256,14 @@ TABS.cli.read = function (readInfo) {
case lineFeedCode:
if (GUI.operating_system != "MacOS") {
writeLineToOutput(this.cliBuffer);
this.cliBuffer = "";
}
this.cliBuffer = "";
break;
case carriageReturnCode:
if (GUI.operating_system == "MacOS") {
writeLineToOutput(this.cliBuffer);
this.cliBuffer = "";
}
this.cliBuffer = "";
break;
case 60:
this.cliBuffer += '&lt';