Skip to content

Commit

Permalink
Merge pull request #13471 from calligraf0/main
Browse files Browse the repository at this point in the history
possible fix for #13470
  • Loading branch information
chrisroberts authored Jul 10, 2024
2 parents 5c0f4c9 + 34160ff commit 881b9d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/vagrant/util/file_checksum.rb
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ def checksum
private

def load_digest(type)
digest = CHECKSUM_MAP[type.to_s.to_sym]
digest = CHECKSUM_MAP[type.to_s.downcase.to_sym]
if digest.nil?
raise Vagrant::Errors::BoxChecksumInvalidType,
type: type.to_s,
Expand Down

0 comments on commit 881b9d6

Please sign in to comment.