Skip to content
Snippets Groups Projects
Commit 303f3bc9 authored by Matthew K Defenderfer's avatar Matthew K Defenderfer
Browse files

replace backticks and set quotes for strings

parent 7d392fe2
No related branches found
No related tags found
6 merge requests!24Release v0.2.0,!22Update main to rel_v0.1.1-1,!21Fix some merge errors,!20Refactoring run-mmpol scripts,!19BUGFIX: Change ownership to executing USER and group to atlab. Also automatically gzip the log output,!18ENH: Change log storage organization and correctly apply log prefix and metadata to file name
......@@ -96,10 +96,10 @@ if [[ -z "${output_log_prefix}" ]]; then
fi
# create temporary working directory for list aggregation
tmpglobal=${outdir}/slurm-tmp-${SLURM_JOBID}
tmpscratch=${outdir}/slurm-tmp-${SLURM_JOBID}
tmpglobal="${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}"
DATESTR=$(date +'%Y%m%dT%H%M%S')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment