Skip to content

Commit

Permalink
fix: fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
phodal committed Mar 5, 2021
1 parent bd02648 commit 55ed061
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/visual/output_static.rs
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ fn export_reporter<P: AsRef<Path>>(path: &P, project: String) {
let _ = fs::copy(tags, &data_dir.join("git-tags.json"));

// file_history
let file_history = Settings::cloc().join(format!("{}-file-history.json", project));
let _ = fs::copy(file_history, &data_dir.join("cloc.json"));
let file_history = Settings::git().join(format!("{}-file-history.json", project));
let _ = fs::copy(file_history, &data_dir.join("git-file-history.json"));

// cloc
let cloc = Settings::cloc().join(format!("{}.json", project));
Expand Down

0 comments on commit 55ed061

Please sign in to comment.