Catch error for version in VCS
This PR will catch the error where the url can not be determined from a VCS URL, such as git. It will print a message to the console and move on because it should not be a fatal error at this point in the process. This should fix #1459.
This commit is contained in:
parent
0c02ee86a7
commit
20221ee3aa
@ -321,15 +321,19 @@ def fetch(self, mirror_only=False):
|
|||||||
package_name = os.path.dirname(self.mirror_path)
|
package_name = os.path.dirname(self.mirror_path)
|
||||||
pkg = spack.repo.get(package_name)
|
pkg = spack.repo.get(package_name)
|
||||||
if pkg.list_url is not None and pkg.url is not None:
|
if pkg.list_url is not None and pkg.url is not None:
|
||||||
|
try:
|
||||||
archive_version = spack.url.parse_version(
|
archive_version = spack.url.parse_version(
|
||||||
self.default_fetcher.url)
|
self.default_fetcher.url)
|
||||||
versions = pkg.fetch_remote_versions()
|
versions = pkg.fetch_remote_versions()
|
||||||
try:
|
try:
|
||||||
url_from_list = versions[Version(archive_version)]
|
url_from_list = versions[Version(archive_version)]
|
||||||
fetchers.append(fs.URLFetchStrategy(url_from_list, digest))
|
fetchers.append(fs.URLFetchStrategy(
|
||||||
|
url_from_list, digest))
|
||||||
except KeyError:
|
except KeyError:
|
||||||
tty.msg("Can not find version %s in url_list" %
|
tty.msg("Can not find version %s in url_list" %
|
||||||
archive_version)
|
archive_version)
|
||||||
|
except:
|
||||||
|
tty.msg("Could not determine url from list_url.")
|
||||||
|
|
||||||
for fetcher in fetchers:
|
for fetcher in fetchers:
|
||||||
try:
|
try:
|
||||||
|
Loading…
Reference in New Issue
Block a user