Skip to content

Commit

Permalink
make sure that the files being processed for the image tag hash are c…
Browse files Browse the repository at this point in the history
…onsistently ordered by sorting them
  • Loading branch information
k-rister committed Apr 15, 2024
1 parent f765f07 commit 41daca9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rickshaw-run
Original file line number Diff line number Diff line change
Expand Up @@ -498,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 41daca9

Please sign in to comment.