mirror of
https://github.com/ivabus/pantry
synced 2024-11-23 00:45:07 +03:00
some valid codesign outcomes are not exit code 0
This commit is contained in:
parent
7e54c84c03
commit
7ff34e317e
1 changed files with 2 additions and 2 deletions
4
.github/actions/apple-signing/action.yml
vendored
4
.github/actions/apple-signing/action.yml
vendored
|
@ -43,10 +43,10 @@ runs:
|
|||
run: |
|
||||
for PATH in $PATHS; do
|
||||
/usr/bin/find $PATH -name '*.so' -or -name '*.dylib' -print0 | \
|
||||
/usr/bin/xargs -0 /usr/bin/codesign -s "$IDENTITY" --force -v --deep --timestamp --preserve-metadata=entitlements -o runtime
|
||||
/usr/bin/xargs -0 /usr/bin/codesign -s "$IDENTITY" --force -v --deep --timestamp --preserve-metadata=entitlements -o runtime || true
|
||||
if test -d $PATH/bin; then
|
||||
/usr/bin/find $PATH/bin -type f -print0 | \
|
||||
/usr/bin/xargs -0 /usr/bin/codesign -s "$IDENTITY" -v --force --deep --timestamp --preserve-metadata=entitlements -o runtime
|
||||
/usr/bin/xargs -0 /usr/bin/codesign -s "$IDENTITY" -v --force --deep --timestamp --preserve-metadata=entitlements -o runtime || true
|
||||
fi
|
||||
done
|
||||
env:
|
||||
|
|
Loading…
Reference in a new issue