Skip to content
Snippets Groups Projects
Commit 8e1df892 authored by Reuben D. Budiardja's avatar Reuben D. Budiardja
Browse files

Fixed minor error in retest script.

parent 1d3cce8d
No related branches found
No related tags found
No related merge requests found
......@@ -39,7 +39,6 @@ fi
############################## app specific section
#
set -o verbose
#clear out status file since re-testing
rm -f status
......@@ -97,7 +96,8 @@ qsub ${PACKAGE}.pbs 2>&1 > ${SW_BLDDIR}/.running
# qsub returns 0 on successful job launch, so if failure return 1
if [ $? -ne 0 ]; then
echo "Error submitting job"
rm -f .running
cat ${SW_BLDDIR}/.running
rm -f ${SW_BLDDIR}/.running
exit 1
else
echo "Job submitted"
......
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