Skip to content
Snippets Groups Projects

Fix some merge errors

1 file
+ 3
3
Compare changes
  • Side-by-side
  • Inline
@@ -96,10 +96,10 @@ if [[ -z "${output_log_prefix}" ]]; then
@@ -96,10 +96,10 @@ if [[ -z "${output_log_prefix}" ]]; then
fi
fi
# create temporary working directory for list aggregation
# create temporary working directory for list aggregation
tmpglobal=${outdir}/slurm-tmp-${SLURM_JOBID}
tmpglobal="${outdir}/slurm-tmp-${SLURM_JOBID}"
tmpscratch=${outdir}/slurm-tmp-${SLURM_JOBID}
tmpscratch="${outdir}/slurm-tmp-${SLURM_JOBID}"
nodes=`scontrol show hostnames "${SLURM_JOB_NODELIST}" | tr '\n' ',' | sed -e 's/,$//'`
nodes=$(scontrol show hostnames "${SLURM_JOB_NODELIST}" | tr '\n' ',' | sed -e 's/,$//')
cores="${SLURM_CPUS_PER_TASK}"
cores="${SLURM_CPUS_PER_TASK}"
DATESTR=$(date +'%Y%m%dT%H%M%S')
DATESTR=$(date +'%Y%m%dT%H%M%S')
Loading