diff --git a/.gitignore b/.gitignore index 9aa0ca7..a3becb9 100644 --- a/.gitignore +++ b/.gitignore @@ -8,3 +8,4 @@ Ftl2Jcl/target/maven-archiver/pom.properties Ftl2Jcl/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst Ftl2Jcl/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst Ftl2Jcl/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst +FTL2JCL/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst diff --git a/SH/Allocate.sh b/SH/Allocate.sh index 1d8240a..25f6b8a 100755 --- a/SH/Allocate.sh +++ b/SH/Allocate.sh @@ -12,6 +12,7 @@ cat ../JCL/ALLOCDONE.jcl >> ../JCL/ALLOC.jcl; echo "$(date) ${BASH_SOURCE##*/} Submit JCL to allocate the build data sets"; . ./JobSubmitter.sh '../JCL/ALLOC.jcl' allocdone 1>> $err_log; +exitIfError; echo "$(date) ${BASH_SOURCE##*/} JobID: $GERS_JOBID" ; . ./JobWaiter.sh 60 allocdone 1>> $err_log; exitIfError; diff --git a/SH/DataSetAlias.sh b/SH/DataSetAlias.sh index 8979a31..8098b2e 100755 --- a/SH/DataSetAlias.sh +++ b/SH/DataSetAlias.sh @@ -12,6 +12,7 @@ cat ../JCL/ALIASDONE.jcl >> ../JCL/ALIAS.jcl; echo "$(date) ${BASH_SOURCE##*/} Submit JCL to set aliases for the build data sets"; . ./JobSubmitter.sh '../JCL/ALIAS.jcl' aliasdone 1>> $err_log; +exitIfError; echo "$(date) ${BASH_SOURCE##*/} JobID: $GERS_JOBID" ; . ./JobWaiter.sh 60 aliasdone 1>> $err_log; exitIfError; diff --git a/SH/SaveJobInfo.sh b/SH/SaveJobInfo.sh index 878eb38..6b187f1 100644 --- a/SH/SaveJobInfo.sh +++ b/SH/SaveJobInfo.sh @@ -11,6 +11,7 @@ cat ../JCL/SAVEDONE.jcl >> ../JCL/SAVEJOB.jcl; echo "$(date) ${BASH_SOURCE##*/} Submit JCL to copy job output"; . ./JobSubmitter.sh '../JCL/SAVEJOB.jcl' savedone 1>> $err_log; +exitIfError; echo "$(date) ${BASH_SOURCE##*/} JobID: $GERS_JOBID" ; . ./JobWaiter.sh 60 savedone 1>> $err_log; exitIfError; diff --git a/SH/SubBuild.sh b/SH/SubBuild.sh index 75ca6a6..252f406 100755 --- a/SH/SubBuild.sh +++ b/SH/SubBuild.sh @@ -12,6 +12,7 @@ cd $save_pwd ; echo "$(date) ${BASH_SOURCE##*/} Submit the generated JCL to assemble and link the load modules"; . ./JobSubmitter.sh '../JCL/BUILDPE.jcl' asmdone 1>> $err_log; +exitIfError; echo "$(date) ${BASH_SOURCE##*/} JobID: $GERS_JOBID" ; . ./JobWaiter.sh 120 asmdone 1>> $err_log ; exitIfError;