Commit 86f9cb7d by Sam Stephenson

URLs without anchors do not have checksums

parent 7182bde3
...@@ -204,9 +204,10 @@ fetch_tarball() { ...@@ -204,9 +204,10 @@ fetch_tarball() {
local package_name="$1" local package_name="$1"
local package_url="$2" local package_url="$2"
local mirror_url local mirror_url
local checksum
local checksum="${package_url#*\#}" if [ "$package_url" != "${package_url/\#}" ]; then
if [ -n "$checksum" ]; then checksum="${package_url#*#}"
package_url="${package_url%%#*}" package_url="${package_url%%#*}"
if [ -n "$RUBY_BUILD_MIRROR_URL" ]; then if [ -n "$RUBY_BUILD_MIRROR_URL" ]; then
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment