Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -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
1 change: 1 addition & 0 deletions SH/Allocate.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
1 change: 1 addition & 0 deletions SH/DataSetAlias.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
1 change: 1 addition & 0 deletions SH/SaveJobInfo.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
1 change: 1 addition & 0 deletions SH/SubBuild.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down