summaryrefslogtreecommitdiff
path: root/app.mjs
diff options
context:
space:
mode:
Diffstat (limited to 'app.mjs')
-rwxr-xr-xapp.mjs8
1 files changed, 6 insertions, 2 deletions
diff --git a/app.mjs b/app.mjs
index f590ffc..fa7ace7 100755
--- a/app.mjs
+++ b/app.mjs
@@ -238,7 +238,11 @@ for (let r of res) {
continue;
}
const date = cur.date.format("YYYY-MM-DD");
- const file = `${cur.unzip ? zip_path : chart_path}/${r.prefix}-${region.toLowerCase()}-${date}.${cur.unzip ? "zip" : "pdf"}`;
+ const dir = `${cur.unzip ? zip_path : chart_path}/${date}`;
+ try {
+ await fs.mkdir(dir);
+ } catch (_) {}
+ const file = `${dir}/${r.prefix}-${region.toLowerCase()}.${cur.unzip ? "zip" : "pdf"}`;
const fileExists = (path) =>
fs.stat(path).then(
() => true,
@@ -257,7 +261,7 @@ for (let r of res) {
await decompress(file, "./", {
filter: (f) => cur.unzip[f.path] != null,
map: (f) => {
- f.path = `${chart_path}/${r.prefix}-${region.toLowerCase()}-${date}${cur.unzip[f.path]}`;
+ f.path = `${chart_path}/${date}/${r.prefix}-${region.toLowerCase()}${cur.unzip[f.path]}`;
return f;
},
});