mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Ensure the appbundle has correct permissions so that pgAdmin can be accessed by users other than owner. #5613
This commit is contained in:
parent
cbea043ca1
commit
181ed62ec2
@ -304,6 +304,10 @@ _complete_bundle() {
|
||||
|
||||
# Remove the .pyc files if any
|
||||
find "${BUNDLE_DIR}" -name "*.pyc" -print0 | xargs -0 rm -f
|
||||
|
||||
# Update permissions to make sure all users can access installed pgadmin.
|
||||
chmod -R og=u "${BUNDLE_DIR}"
|
||||
chmod -R og-w "${BUNDLE_DIR}"
|
||||
}
|
||||
|
||||
_codesign_binaries() {
|
||||
|
Loading…
Reference in New Issue
Block a user