c9186c8722
* Move vault to veracrypt * Remove broken switch (windows does not support)
8 lines
169 B
Bash
Executable file
8 lines
169 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -e
|
|
VERACRYPT="veracrypt"
|
|
if [[ "$OSTYPE" == "darwin"* ]]; then
|
|
VERACRYPT="/Applications/VeraCrypt.app/Contents/MacOS/VeraCrypt"
|
|
fi
|
|
$VERACRYPT -t -d
|