Skip to content

Commit

Permalink
Update file cleanup logic to exclude additional job-related files
Browse files Browse the repository at this point in the history
  • Loading branch information
calvinp0 committed Dec 24, 2024
1 parent 515dfd4 commit 85db8cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arc/settings/submit.py
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,7 @@
touch final_time
find {path} -maxdepth 1 -type f ! -name 'crest_best.xyz' ! -name 'coords.ref' ! -name 'constraints.inp' ! -name 'submit.sh' ! -name 'out.txt' ! -name 'err.txt' ! -name 'initial_time' ! -name 'final_time' -exec rm -v {{}} +
find {path} -maxdepth 1 -type f ! -name 'crest_best.xyz' ! -name 'coords.ref' ! -name 'constraints.inp' ! -name 'submit.sh' ! -name 'out.txt' ! -name 'err.txt' ! -name 'initial_time' ! -name 'final_time' ! -name 'job.sh' ! -name 'submit.sub' ! -name 'job.log' -exec rm -v {{}} +
""",
# Atlas uses HTCondor, see docs here: https://htcondor.readthedocs.io/en/latest/
Expand Down

0 comments on commit 85db8cd

Please sign in to comment.