diff options
author | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2022-01-08 11:07:16 +0100 |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2022-01-08 11:08:47 +0100 |
commit | abfef8821d647bee7fb63f56776a88921a2f4d07 (patch) | |
tree | 88cdd13c6304585e739930d8d739caa79c10b795 | |
parent | 46a32bea192676f235f5d6eadb0e8c4b5373fd02 (diff) | |
download | VeraCrypt-abfef8821d647bee7fb63f56776a88921a2f4d07.tar.gz VeraCrypt-abfef8821d647bee7fb63f56776a88921a2f4d07.zip |
MacOSX: remove write permission also from group on application bundleVeraCrypt_1.25.7
-rwxr-xr-x | src/Main/Main.make | 2 | ||||
-rwxr-xr-x | src/Setup/MacOSX/postinstall.sh | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/Main/Main.make b/src/Main/Main.make index 77ca4663..8def8aaa 100755 --- a/src/Main/Main.make +++ b/src/Main/Main.make @@ -209,7 +209,7 @@ ifdef VC_LEGACY_BUILD else sed -e 's/_VERSION_/$(patsubst %a,%.1,$(patsubst %b,%.2,$(TC_VERSION)))/' ../Build/Resources/MacOSX/Info.plist.xml >$(APPNAME).app/Contents/Info.plist endif - chmod -R o-w $(APPNAME).app + chmod -R go-w $(APPNAME).app codesign -s "Developer ID Application: IDRIX (Z933746L2S)" --timestamp $(APPNAME).app install: prepare diff --git a/src/Setup/MacOSX/postinstall.sh b/src/Setup/MacOSX/postinstall.sh index 3db36d82..661b0f5b 100755 --- a/src/Setup/MacOSX/postinstall.sh +++ b/src/Setup/MacOSX/postinstall.sh @@ -5,6 +5,6 @@ then ln -s /usr/local/lib/libosxfuse.2.dylib /usr/local/lib/libfuse.2.dylib fi -chmod -R o-w /Applications/VeraCrypt.app +chmod -R go-w /Applications/VeraCrypt.app exit 0 |