Fixed generateCacheScript as not to redownload duplicate features

This commit is contained in:
Pieter Vander Vennet 2021-07-27 15:06:36 +02:00
parent 4fd233e557
commit 0564c524a2
2 changed files with 20 additions and 6 deletions

View file

@ -86,6 +86,10 @@ export default class ScriptUtils {
})
}
public static erasableLog(...text) {
process.stdout.write("\r "+text.join(" ")+" \r")
}
public static sleep(ms) {
if (ms <= 0) {