Skip to content

Commit

Permalink
Signing verifier job
Browse files Browse the repository at this point in the history
Signed-off-by: Andrew Leonard <[email protected]>
  • Loading branch information
andrew-m-leonard committed Nov 29, 2023
1 parent 1f3e18f commit efbb935
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pipelines/build/common/verify_signing.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ List<String> verifyExecutables(String unpack_dir) {
for f in $FILES
do
# Is file a Mac 64 bit executable or dylib ?
if file ${f} | grep "Mach-O 64-bit executable\|Mach-O 64-bit dynamically linked shared library" >/dev/null; then
if file ${f} | grep "Mach-O 64-bit executable\\|Mach-O 64-bit dynamically linked shared library" >/dev/null; then
if ! codesign --verify --verbose ${f}; then
echo "Error: executable not Signed: ${bin}"
unsigned="$unsigned $f"
Expand Down

0 comments on commit efbb935

Please sign in to comment.