Skip to content

Commit 0732558

Browse files
committed
Fixes delete-all-output ignoring dry-run
1 parent 7a75043 commit 0732558

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

snakemake/cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2149,7 +2149,7 @@ def args_to_api(args, parser):
21492149
elif args.archive:
21502150
dag_api.archive(args.archive)
21512151
elif args.delete_all_output:
2152-
dag_api.delete_output()
2152+
dag_api.delete_output(dryrun=args.dryrun)
21532153
elif args.delete_temp_output:
21542154
dag_api.delete_output(only_temp=True, dryrun=args.dryrun)
21552155
else:

0 commit comments

Comments
 (0)