clean up directory structure
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Johannes Heuel
2022-09-19 09:07:54 +02:00
parent 928a07fc5c
commit 47c453ff82
5 changed files with 1 additions and 1 deletions

View File

@@ -0,0 +1,12 @@
rule collect_and_delete:
input:
[f"{i}.txt" for i in range(100)],
run:
shell("rm {input}")
rule create:
output:
"{i}.txt",
run:
shell("touch {output}")