We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e3e5146 commit 8237a98Copy full SHA for 8237a98
lib/fork-me/touchup.js
@@ -58,7 +58,7 @@ while (dirs.length) {
58
const dir = dirs.shift();
59
fs.readdirSync(dir).forEach(f => {
60
const f1 = path.resolve(dir, f);
61
- if (f.includes(".test.")) fs.unlink(f1, () => { });
+ if (f.includes(".test.")) fs.unlink(f1, () => {});
62
else if (fs.lstatSync(f1).isDirectory()) {
63
dirs.push(f1);
64
}
0 commit comments