mirror of
https://github.com/veracrypt/VeraCrypt.git
synced 2026-08-30 20:57:10 +00:00
The DEB script builds VeraCrypt and links it against wxWidgets that comes with the distribution. The RPM script awaits for wxWidgets-3.0.4 source code which it builds then links VeraCrypt statically to it. Both scripts create the corresponding package after the build.
9 lines
158 B
Bash
9 lines
158 B
Bash
#!/bin/sh
|
|
V="$(mount | grep veracrypt_aux_mnt)"
|
|
if [ ! -z "$V" ]
|
|
then
|
|
echo "Error: All VeraCrypt volumes must be dismounted first."
|
|
exit 1
|
|
else
|
|
exit 0
|
|
fi |