|
@@ -24,6 +24,10 @@ if output_folder.exists():
|
|
|
else:
|
|
|
output_files = []
|
|
|
|
|
|
+# No idea what has broken to make this necessary
|
|
|
+root_path = str(root_path)
|
|
|
+output_files = [str(v) for v in output_files]
|
|
|
+
|
|
|
datalad.api.run(
|
|
|
cmd=f"./venv/bin/python3 src/download_version.py --version {version}",
|
|
|
dataset=root_path,
|
|
@@ -32,4 +36,4 @@ datalad.api.run(
|
|
|
outputs=output_files,
|
|
|
dry_run=None,
|
|
|
explicit=False,
|
|
|
-)
|
|
|
+)
|