Skip to content
Snippets Groups Projects
Commit 6bf6b60d authored by Martin Schroschk's avatar Martin Schroschk
Browse files

Encapsulate variables in curly braces

parent cab8f757
No related branches found
No related tags found
2 merge requests!679Automated merge from preview to main,!659Check ws allocation
...@@ -244,8 +244,8 @@ calling the actual software to do your computation). ...@@ -244,8 +244,8 @@ calling the actual software to do your computation).
test ! -f "${INPUTFILE}" && echo "Error: Could not find the input file ${INPUTFILE}" && exit 1 test ! -f "${INPUTFILE}" && echo "Error: Could not find the input file ${INPUTFILE}" && exit 1
COMPUTE_DIR=computation_$SLURM_JOB_ID COMPUTE_DIR=computation_$SLURM_JOB_ID
export WORKSPACE_DIR=$(ws_allocate -F ssd $COMPUTE_DIR 7) export WORKSPACE_DIR=$(ws_allocate -F ssd ${COMPUTE_DIR} 7)
echo $WORKSPACE_DIR echo ${WORKSPACE_DIR}
# Check allocation. # Check allocation.
test -z "${WORKSPACE_DIR}" && echo "Error: Cannot allocate workspace ${COMPUTE_DIR}" && exit 1 test -z "${WORKSPACE_DIR}" && echo "Error: Cannot allocate workspace ${COMPUTE_DIR}" && exit 1
...@@ -258,12 +258,12 @@ calling the actual software to do your computation). ...@@ -258,12 +258,12 @@ calling the actual software to do your computation).
# Compress results with bzip2 (which includes CRC32 Checksums) # Compress results with bzip2 (which includes CRC32 Checksums)
bzip2 --compress --stdout -4 "${WORKSPACE_DIR}" > $HOME/gaussian_job-$SLURM_JOB_ID.bz2 bzip2 --compress --stdout -4 "${WORKSPACE_DIR}" > $HOME/gaussian_job-$SLURM_JOB_ID.bz2
RETURN_CODE=$? RETURN_CODE=$?
COMPRESSION_SUCCESS="$(if test $RETURN_CODE -eq 0; then echo 'TRUE'; else echo 'FALSE'; fi)" COMPRESSION_SUCCESS="$(if test ${RETURN_CODE} -eq 0; then echo 'TRUE'; else echo 'FALSE'; fi)"
if [ "TRUE" = $COMPRESSION_SUCCESS ]; then if [ "TRUE" = ${COMPRESSION_SUCCESS} ]; then
test -d $WORKSPACE_DIR && rm -rf $WORKSPACE_DIR/* test -d ${WORKSPACE_DIR} && rm -rf ${WORKSPACE_DIR}/*
# Reduces grace period to 1 day! # Reduces grace period to 1 day!
ws_release -F ssd $COMPUTE_DIR ws_release -F ssd ${COMPUTE_DIR}
else else
echo "Error with compression and writing of results"; echo "Error with compression and writing of results";
echo "Please check the folder \"${WORKSPACE_DIR}\" for any partial(?) results."; echo "Please check the folder \"${WORKSPACE_DIR}\" for any partial(?) results.";
......
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