Skip to content

Commit

Permalink
Merge pull request #484 from perftool-incubator/dev-kmr3
Browse files Browse the repository at this point in the history
Dev kmr3
  • Loading branch information
k-rister authored Apr 15, 2024
2 parents 62df957 + 41daca9 commit ab3dd53
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion rickshaw-run
Original file line number Diff line number Diff line change
Expand Up @@ -202,6 +202,7 @@ sub find_files {
($entry =~ /^\.git$/) ||
($entry =~ /^docs$/) ||
($entry =~ /\.md$/) ||
($entry =~ /^__pycache__$/) ||
($entry =~ /^\.github$/)) {
next;
}
Expand Down Expand Up @@ -497,7 +498,7 @@ sub calc_image_md5 {
$md5->add(join("", @config_analysis_output));

# Second is the hashing contents of files
for my $file (@files) {
for my $file (sort @files) {
debug_log(sprintf "calc_image_md5(): adding '%s' to hash\n", $file);
open(my $fh, $file);
binmode($fh);
Expand Down

0 comments on commit ab3dd53

Please sign in to comment.