add check that hash is a string

This commit is contained in:
Razvan Azamfirei 2023-04-18 23:14:48 -04:00
parent 063324a116
commit 3d5c4aaf50
No known key found for this signature in database
GPG Key ID: 62E97BFCB12046BD

View File

@ -136,7 +136,7 @@ module Homebrew
opoo "Ignoring specified `--sha256=` argument." if new_hash.is_a?(String)
replacement_pairs << [/"#{old_hash}"/, ":no_check"] if old_hash != :no_check
elsif old_hash == :no_check && new_hash != :no_check
replacement_pairs << [":no_check", "\"#{new_hash}\""]
replacement_pairs << [":no_check", "\"#{new_hash}\""] if new_hash.is_a?(String)
elsif old_hash != :no_check
if new_hash.nil? || cask.languages.present?
if new_hash && cask.languages.present?