MCPcopy Index your code
hub / github.com/Moddable-OpenSource/moddable / createDirectories

Method createDirectories

tools/mcrun.js:439–458  ·  view source on GitHub ↗
(path, first, last)

Source from the content-addressed store, hash-verified

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 = [];

Callers 3

constructorMethod · 0.45
includeManifestMethod · 0.45
runMethod · 0.45

Calls 1

createDirectoryMethod · 0.45

Tested by

no test coverage detected