We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5926bab + 95ca2c1 commit 82d352eCopy full SHA for 82d352e
bioimageio/core/commands.py
@@ -32,6 +32,13 @@ def package(
32
33
try:
34
rdf_local_source = resolve_uri(rdf_source)
35
+ except Exception as e:
36
+ print(f"Failed to resolve RDF source {rdf_source}: {e}")
37
+ if verbose:
38
+ traceback.print_exc()
39
+ return 1
40
+
41
+ try:
42
path = path.with_name(path.name.format(src_name=rdf_local_source.stem))
43
shutil.move(tmp_package_path, path)
44
except Exception as e:
0 commit comments