diff options
author | Andrew Harvey <andrew@alantgeo.com.au> | 2021-07-01 21:52:45 +1000 |
---|---|---|
committer | Andrew Harvey <andrew@alantgeo.com.au> | 2021-07-01 21:52:45 +1000 |
commit | 997046c863a696921162d705b0032afb1a3ad938 (patch) | |
tree | 5b4aa4651ece16b05f7a4d437d99f9df193b3389 /bin | |
parent | b78bb49c8f8d835989bba6d2a46592cb0f550b95 (diff) |
more frequent progress updates
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/vicmap2osm.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/vicmap2osm.js b/bin/vicmap2osm.js index e781ca7..17fef2a 100755 --- a/bin/vicmap2osm.js +++ b/bin/vicmap2osm.js @@ -56,7 +56,7 @@ const transform = new Transform({ sourceCount++ if (!argv.quiet) { - if (process.stdout.isTTY && sourceCount % 10000 === 0) { + if (process.stdout.isTTY && sourceCount % 1000 === 0) { process.stdout.write(` ${sourceCount.toLocaleString()}\r`) } } |