mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2024-11-28 19:43:51 -06:00
e3041f1113
Correct current versions of Python/Qt while we're passing.
27 lines
510 B
Bash
Executable File
27 lines
510 B
Bash
Executable File
#!/bin/sh
|
|
|
|
BUNDLE="$1"
|
|
|
|
if ! test -d "${BUNDLE}" ; then
|
|
echo "${BUNDLE} is no bundle!" >&2
|
|
exit 1
|
|
fi
|
|
|
|
# Get the config
|
|
source codesign.conf
|
|
|
|
# Sign the .app
|
|
echo Signing ${BUNDLE}
|
|
codesign --sign "${DEVELOPER_ID}" --verbose --deep --force "${BUNDLE}"
|
|
|
|
# Verify it worked
|
|
echo Verifying the signature
|
|
codesign --verify --verbose --deep --force "${BUNDLE}"
|
|
RETURN_STATUS=$?
|
|
if [ $RETURN_STATUS -ne 0 ]; then
|
|
echo Code signing did not work, check the log
|
|
exit 1
|
|
else
|
|
echo ${BUNDLE} successfully signed
|
|
fi
|