Skip to content

Commit

Permalink
Merge pull request #1779 from multiversx/fix-code-report
Browse files Browse the repository at this point in the history
remove dbg files
  • Loading branch information
BiancaIalangi authored Sep 30, 2024
2 parents 647a571 + f601d26 commit 288dd73
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions framework/meta/src/cmd/code_report/generate_report.rs
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,11 @@ fn find_mxsc_files(path: &PathBuf) -> Vec<PathBuf> {
let mut mxsc_files = Vec::new();
for entry in read_dir(path).unwrap() {
let file_path = entry.unwrap().path();

if file_path.to_str().unwrap().ends_with("-dbg.mxsc.json") {
continue;
}

if file_path.to_str().unwrap().ends_with(".mxsc.json") {
mxsc_files.push(file_path);
}
Expand Down

0 comments on commit 288dd73

Please sign in to comment.