mirror of
https://github.com/danbulant/sql2csv
synced 2026-05-19 04:18:33 +00:00
Fix unterminated template literal
This commit is contained in:
parent
1fa460294f
commit
9ab123f431
1 changed files with 1 additions and 1 deletions
2
index.js
2
index.js
|
|
@ -109,7 +109,7 @@ fs.readdirSync('./input/').forEach(file => {
|
|||
s2c.query(fs.readFileSync(file))
|
||||
.then(result => {
|
||||
console.log(result.csv);
|
||||
log(`Task from file ${file} done in `` + Math.round(result.end - result.start) + "ms");
|
||||
log(`Task from file ${file} done in ` + Math.round(result.end - result.start) + "ms");
|
||||
con.end();
|
||||
})
|
||||
.catch(err => {error(err); process.exit(0)})
|
||||
|
|
|
|||
Loading…
Reference in a new issue