Idea of this package is great, but this issue hurts me badly.
if (!mkdir(MODULES_DIR)) {
console.log("Error: Path '" + MODULES_DIR + "' exists, but is not a directory.");
exit();
}
The code above enters if section even though I know there's no file or directory (so it will create one). Directory is created right after app exits. Assigning mkdir to variable doesn't help.
Idea of this package is great, but this issue hurts me badly.
The code above enters
if
section even though I know there's no file or directory (so it will create one). Directory is created right after app exits. Assigningmkdir
to variable doesn't help.