(path, first, last)
| 437 | } |
| 438 | } |
| 439 | createDirectories(path, first, last) { |
| 440 | this.createDirectory(path); |
| 441 | path += this.slash + first; |
| 442 | this.createDirectory(path); |
| 443 | var platform = this.platform; |
| 444 | path += this.slash + platform; |
| 445 | this.createDirectory(path); |
| 446 | if ((platform == "mac") || (platform == "win") || (platform == "lin")) { |
| 447 | path += this.slash + "mc"; |
| 448 | this.createDirectory(path); |
| 449 | } |
| 450 | if (this.debug) |
| 451 | path += this.slash + "debug"; |
| 452 | else |
| 453 | path += this.slash + "release"; |
| 454 | this.createDirectory(path); |
| 455 | path += this.slash + last; |
| 456 | this.createDirectory(path); |
| 457 | return path; |
| 458 | } |
| 459 | filterRun(archive) { |
| 460 | var jsFiles = []; |
| 461 | var tsFiles = []; |
no test coverage detected