From 3a75f238195639e64c029ccdd9a83059c411b974 Mon Sep 17 00:00:00 2001 From: Nickwasused Date: Sat, 25 Feb 2023 18:19:58 +0100 Subject: [PATCH] fix path --- index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.ts b/index.ts index 02cf3ff..03b1f33 100644 --- a/index.ts +++ b/index.ts @@ -90,10 +90,10 @@ const unique_station_data = deduplicate_stations(filtered_station_data); console.log(`got ${unique_station_data.length} stations`); Deno.writeTextFileSync( - './json_out/stations.json', + './out/stations.json', JSON.stringify(unique_station_data, undefined, 4), ); Deno.writeTextFileSync( - './json_out/stations_min.json', + './out/stations_min.json', JSON.stringify(unique_station_data), );