Skip to content

Commit

Permalink
Allow for . in nightly archive EA filename (#921)
Browse files Browse the repository at this point in the history
Signed-off-by: Andrew Leonard <[email protected]>
  • Loading branch information
andrew-m-leonard authored Feb 12, 2024
1 parent 2dcc54d commit 6df3828
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/nightly_build_and_test_stats.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ def verifyReleaseContent(String version, String release, String variant, Map sta
// Search for artifacts in the releaseAssets list
ftypes.each { ftype ->
def arch_fname = archToAsset[osarch]
def findAsset = releaseAssets =~/.*${file_image}_${arch_fname}_[^\."]*${ftype}".*/
def findAsset = releaseAssets =~/.*${file_image}_${arch_fname}_[^"]*${ftype}".*/
if (!findAsset) {
missingForArch.add("$osarch : $image : $ftype".replaceAll("\\\\", ""))
} else {
Expand Down

0 comments on commit 6df3828

Please sign in to comment.