Added new env based shebangs

This commit is contained in:
Ceferino Patino 2024-12-24 22:09:33 -06:00
commit 21aafcff36
No known key found for this signature in database
2 changed files with 2 additions and 3 deletions

View file

@ -1,5 +1,4 @@
#!/run/current-system/sw/bin/bash
#!/usr/bin/env bash
# Delete the scratch directory for the job
SCRATCH_DIR="/scratch/job-$SLURM_JOB_ID"
rm -rf "$SCRATCH_DIR"

View file

@ -1,4 +1,4 @@
#!/run/current-system/sw/bin/bash
#!/usr/bin/env bash
# Create the scratch directory for the job
SCRATCH_DIR="/scratch/job-$SLURM_JOB_ID"