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.
1 parent c95aee0 commit 3976e8bCopy full SHA for 3976e8b
lib/galaxy/job_execution/setup.py
@@ -288,9 +288,9 @@ def compute_outputs(self) -> None:
288
job_outputs = []
289
for da in job.output_datasets + job.output_library_datasets:
290
da_false_path = dataset_path_rewriter.rewrite_dataset_path(da.dataset, "output")
291
- #if da_false_path:
292
- # with open(da_false_path, "wb"):
293
- # pass
+ if da_false_path and not os.path.exists(da_false_path):
+ with open(da_false_path, "ab"):
+ pass
294
mutable = da.dataset.dataset.external_filename is None
295
dataset_path = DatasetPath(
296
da.dataset.dataset.id,
0 commit comments