Open lajy78 opened 8 years ago
Before running fontforge, source files are copied to a temporary directory.
// Copy source files to temporary directory var tempDir = temp.mkdirSync(); o.files.forEach(function(file) { fs.writeFileSync(path.join(tempDir, o.rename(file)), fs.readFileSync(file)); });
Why is this temporary directory not removed at the end of the process? Thanks.
I don’t know. Maybe it’s a bug, maybe nobody wrote any code to remove it. I’ll be happy to merge a pull request with a fix.
Before running fontforge, source files are copied to a temporary directory.
Why is this temporary directory not removed at the end of the process? Thanks.