Skip to content

Commit

Permalink
Prefix output filenames with irve
Browse files Browse the repository at this point in the history
Good call @ptitfred
  • Loading branch information
thbar committed Jan 30, 2025
1 parent 8c2d471 commit 86247df
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/irve/data-frame.exs
Original file line number Diff line number Diff line change
Expand Up @@ -235,13 +235,13 @@ defmodule Demo do
output_folder = Path.join(__DIR__, "../../data-tmp")
if !File.exists?(output_folder), do: File.mkdir(output_folder)

consolidation_filename = output_folder |> Path.join("consolidation.csv") |> Path.expand()
consolidation_filename = output_folder |> Path.join("irve-consolidation.csv") |> Path.expand()
Logger.info("Generating #{consolidation_filename}")

output.df
|> Explorer.DataFrame.to_csv!(consolidation_filename)

report_filename = output_folder |> Path.join("report.csv") |> Path.expand()
report_filename = output_folder |> Path.join("irve-report.csv") |> Path.expand()
Logger.info("Generating #{report_filename}")

output.report
Expand Down

0 comments on commit 86247df

Please sign in to comment.