more debugging
All checks were successful
MVS Upload & Execute / upload-and-run (push) Successful in 33s

This commit is contained in:
Gregory Gauthier 2026-02-06 10:10:47 +00:00
parent 21cfed2478
commit 578a721baf
3 changed files with 5 additions and 3 deletions

View File

@ -3,4 +3,4 @@
// MSGLEVEL=(1,1),REGION=4M,TIME=1440
//* Compile Step
//STEP1 EXEC GCCCG,INFILE='@05054.SRCLIB.C(SIMPLE)'
//
//

View File

@ -136,10 +136,10 @@ if __name__ == "__main__":
else:
# Default destination
dataset_name = f"@05054.SRCLIB.{default_suffix}"
member_name = basename
member_name = basename.upper()
# JCL job name defaults to basename
job = basename.lower()
job = basename.upper()
# Optional host override
mvshost = sys.argv[3] if len(sys.argv) > 3 else MVSHOST

View File

@ -11,3 +11,5 @@ int main() {
printf("%s\n", HELLO_STRING);
return 0;
}
// Simple comment