Skip to content

Commit

Permalink
fix path
Browse files Browse the repository at this point in the history
  • Loading branch information
Nickwasused committed Feb 25, 2023
1 parent bf263bb commit 3a75f23
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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),
);

0 comments on commit 3a75f23

Please sign in to comment.