Skip to content

Commit ae70ecf

Browse files
committed
follow tims naming convention
1 parent a424ca4 commit ae70ecf

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/fairscape_cli/utils/build_utils.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -110,8 +110,8 @@ def process_evidence_graph(subcrate_path: Path, release_directory: Optional[Path
110110
return False
111111

112112
metadata_file = subcrate_path / "ro-crate-metadata.json"
113-
output_json = subcrate_path / "provenance-graph.json"
114-
output_html = subcrate_path / "provenance-graph.html"
113+
output_json = subcrate_path / "ro-crate-prov-graph.json"
114+
output_html = subcrate_path / "ro-crate-prov-graph.html"
115115

116116
try:
117117
evidence_graph = generate_evidence_graph_from_rocrate(
@@ -155,7 +155,7 @@ def process_croissant(crate_path: Path) -> bool:
155155
from fairscape_models.conversion.mapping.croissant import MAPPING_CONFIGURATION as CROISSANT_MAPPING
156156

157157
metadata_file = crate_path / "ro-crate-metadata.json"
158-
output_path = crate_path / "croissant.json"
158+
output_path = crate_path / "ro-crate-croissant.json"
159159

160160
try:
161161
with open(metadata_file, 'r') as f:

0 commit comments

Comments
 (0)