Skip to content

Commit

Permalink
change .cryo_reports to .cryo
Browse files Browse the repository at this point in the history
  • Loading branch information
sslivkoff committed Aug 30, 2023
1 parent 50b81c5 commit ff67c15
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion crates/cli/src/args.rs
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ pub struct Args {
pub compression: Vec<String>,

/// Directory to save summary report
/// [default: {output_dir}/.cryo_reports]
/// [default: {output_dir}/.cryo/reports]
#[arg(long, help_heading = "Output Options")]
pub report_dir: Option<String>,

Expand Down
2 changes: 1 addition & 1 deletion crates/cli/src/reports.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ pub(crate) fn get_report_path(
) -> Result<String, FreezeError> {
let report_dir = match &args.report_dir {
Some(report_dir) => Path::new(&report_dir).into(),
None => Path::new(&args.output_dir).join(".cryo_reports"),
None => Path::new(&args.output_dir).join(".cryo/reports"),
};
std::fs::create_dir_all(&report_dir)?;
let t_start: DateTime<Local> = t_start.into();
Expand Down

0 comments on commit ff67c15

Please sign in to comment.