mirror of
https://github.com/veracrypt/VeraCrypt.git
synced 2025-11-11 19:08:26 -06:00
Currently, documentation HTML files and XML language files embedded inside VeraCrypt application bundle are world-writable.
11 lines
189 B
Bash
Executable File
11 lines
189 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if !([ -e "/usr/local/lib/libfuse.2.dylib" ])
|
|
then
|
|
ln -s /usr/local/lib/libosxfuse.2.dylib /usr/local/lib/libfuse.2.dylib
|
|
fi
|
|
|
|
chmod -R o-w /Applications/VeraCrypt.app
|
|
|
|
exit 0
|