formatting

This commit is contained in:
2020-02-20 10:47:38 +01:00
parent 53e0f0569f
commit b33dd78bd1
8 changed files with 23 additions and 15 deletions

View File

@ -26,7 +26,7 @@ async function run (folder, args) {
const template = path.join (__dirname, 'template');
if (!fs.existsSync (snip_folder))
fs.mkdir (snip_folder);
for (const f of fs.readdirSync (template))
for (const f of fs.readdirSync (template)) {
fs.copy (
path.join (template, f),
path.join (snip_folder, f),
@ -35,6 +35,7 @@ async function run (folder, args) {
filter: (src, dest) => !fs.existsSync (dest)
}
);
}
child_process.execSync (
'git init',
@ -106,11 +107,12 @@ function assert (folder, args) {
reason: 'folder already exists'
}
];
for (const test of tests)
for (const test of tests) {
if (!test.f ()) {
console.log (test.reason);
return false;
}
}
return true;
}