diff options
author | kali kaneko (leap communications) <kali@leap.se> | 2021-12-09 21:14:10 +0100 |
---|---|---|
committer | kali kaneko (leap communications) <kali@leap.se> | 2021-12-09 21:15:01 +0100 |
commit | 4c87c1a56a2a95070a93e7266e08b8708ac7f810 (patch) | |
tree | c9bafa8d3cda6ba46697bfa79feb7628997d86e8 /gui | |
parent | 035cf4efce17d85569e88426f03aafd3ad0fc068 (diff) |
[pkg] optionally skip lrelease for snap
Diffstat (limited to 'gui')
-rw-r--r--[-rwxr-xr-x] | gui/build.sh | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gui/build.sh b/gui/build.sh index 69474bd..791a700 100755..100644 --- a/gui/build.sh +++ b/gui/build.sh @@ -120,7 +120,10 @@ function renameOutput { function buildDefault { echo "[+] Building BitmaskVPN" - $LRELEASE bitmask.pro + if [ "$LRELEASE" != "no" ] + then + $LRELEASE bitmask.pro + fi if [ "$BUILD_GOLIB" == "yes" ] then buildGoLib |