mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Remove extra quotes that are doubled.
This commit is contained in:
parent
b0877f63b5
commit
b617a5d89d
@ -30,13 +30,13 @@ do
|
|||||||
# when the signing server is macOS 10.9 and codesign recommends to use
|
# when the signing server is macOS 10.9 and codesign recommends to use
|
||||||
# 10.13 or later and XCode 10 or later.
|
# 10.13 or later and XCode 10 or later.
|
||||||
# error: invalid or inappropriate API flag(s) specified
|
# error: invalid or inappropriate API flag(s) specified
|
||||||
codesign --deep -f -i "${DEVELOPER_BUNDLE_ID}" -s "${DEVELOPER_ID}" --options runtime \"${i}\"
|
codesign --deep -f -i "${DEVELOPER_BUNDLE_ID}" -s "${DEVELOPER_ID}" --options runtime ${i}
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
|
||||||
echo Signing ${BUNDLE} libraries
|
echo Signing ${BUNDLE} libraries
|
||||||
for i in $(find "${BUNDLE}" -type f -name "*.dylib*")
|
for i in $(find "${BUNDLE}" -type f -name "*.dylib*")
|
||||||
do
|
do
|
||||||
codesign --deep -f -i "${DEVELOPER_BUNDLE_ID}" -s "${DEVELOPER_ID}" --options runtime \"${i}\"
|
codesign --deep -f -i "${DEVELOPER_BUNDLE_ID}" -s "${DEVELOPER_ID}" --options runtime ${i}
|
||||||
done
|
done
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user