Skip to content

Commit

Permalink
Test
Browse files Browse the repository at this point in the history
  • Loading branch information
steelhead31 committed Oct 8, 2024
1 parent 584f2cb commit 11c2c1d
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions linux/sfr.dev/Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def dlURL = "${baseURL}/${binaryDLRepo}"
// Global Variables
def DLfilenames = []
def JDKArray = []
def ModifiedJDKArray = []
// def ModifiedJDKArray = []
def distro = ""
def arch = ""
def ReleaseVersion = ""
Expand Down Expand Up @@ -176,9 +176,10 @@ pipeline {
echo "Actual Sum : ${calculatedChecksum}"
// Remove
// Create New Array With Checksum Added
ModifiedJDKArray << [ "${PTYPE}" , "${PFILE}" , "${PSIGN}" , "${PDIST}" , "${PARCH}" , "${PVERS}" , "${calculatedChecksum}" ]
def ModifiedJDKArray << [ "${PTYPE}" , "${PFILE}" , "${PSIGN}" , "${PDIST}" , "${PARCH}" , "${PVERS}" , "${calculatedChecksum}" ]

}
// Assign Modified Array Back To Initial Array
JDKArray = ModifiedJDKArray
}
}
Expand Down

0 comments on commit 11c2c1d

Please sign in to comment.