File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed
Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -10,13 +10,6 @@ usage() {
1010 exit 1
1111}
1212
13- echo " Default Keychain:"
14- security find-identity -p codesigning -v | grep -o " .*valid identities found"
15- if [[ -n " $SIGNING_KEYCHAIN " ]]; then
16- echo " Keychain:"
17- security find-identity -p codesigning -v " $SIGNING_KEYCHAIN " | grep -o " .*valid identities found"
18- fi
19-
2013# Parse command-line arguments
2114while [[ $# -gt 0 ]]; do
2215 case " $1 " in
@@ -111,6 +104,13 @@ sign_directory() {
111104 fi
112105}
113106
107+ echo " Default Keychain:"
108+ security find-identity -p codesigning -v | grep -o " .*valid identities found"
109+ if [[ -n " $SIGNING_KEYCHAIN " ]]; then
110+ echo " Keychain:"
111+ security find-identity -p codesigning -v " $SIGNING_KEYCHAIN " | grep -o " .*valid identities found"
112+ fi
113+
114114# Walk through files and process them
115115find " $APP_LOCATION " -type f \( -perm -u+x -o -name " *.dylib" -o -name " *.jar" \) ! -path " */dylib.dSYM/Contents/*" ! -path " $APP_LOCATION /$APP_EXECUTABLE " | while read -r file; do
116116 if [[ -L " $file " ]]; then
You can’t perform that action at this time.
0 commit comments