When you run the hydra:jetty rake task on Windows, it returns
Unable to download jetty from
without reporting a URL. I assume that it's because of how the url is looked up. Maybe defined?(ZIP_URL) returns true on Windows even though it's not actually defined.
def url
@url ||= defined?(ZIP_URL) ? ZIP_URL : 'https://github.com/projecthydra/hydra-jetty/archive/new-solr-schema.zip'
@url
end
When you run the hydra:jetty rake task on Windows, it returns
without reporting a URL. I assume that it's because of how the url is looked up. Maybe
defined?(ZIP_URL)returns true on Windows even though it's not actually defined.