aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorJack Nagel2013-12-27 16:43:34 -0600
committerJack Nagel2013-12-27 16:43:34 -0600
commit1d04e600a9b33a397a5783ed8ed751e234b2edf6 (patch)
tree501845605c7310c8a67726835b71edd5459b59c9 /Library
parent6206773253b9b1c4de984de214eb5cf4adbe91e4 (diff)
downloadhomebrew-1d04e600a9b33a397a5783ed8ed751e234b2edf6.tar.bz2
bottle: fix updating formulae with sha256 checksums
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/cmd/bottle.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/cmd/bottle.rb b/Library/Homebrew/cmd/bottle.rb
index 85818f0bb..740e653ed 100644
--- a/Library/Homebrew/cmd/bottle.rb
+++ b/Library/Homebrew/cmd/bottle.rb
@@ -208,7 +208,7 @@ module Homebrew extend self
if has_bottle_block
s.sub!(/ bottle do.+?end\n/m, output)
else
- s.sub!(/( (url|sha1|head|version) '\S*'\n+)+/m, '\0' + output + "\n")
+ s.sub!(/( (url|sha1|sha256|head|version) '\S*'\n+)+/m, '\0' + output + "\n")
end
end