From 866fc8f5137925e684ea855111affe2d71612b88 Mon Sep 17 00:00:00 2001 From: Mounir IDRASSI Date: Tue, 17 Sep 2024 17:57:14 +0200 Subject: macOS: fix regression in build script that caused it to ignore fuset switch fixed by Mattoje #1417 --- src/Build/build_veracrypt_macosx.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/Build') diff --git a/src/Build/build_veracrypt_macosx.sh b/src/Build/build_veracrypt_macosx.sh index fa3d02aa..13302442 100755 --- a/src/Build/build_veracrypt_macosx.sh +++ b/src/Build/build_veracrypt_macosx.sh @@ -60,7 +60,7 @@ do esac done -export VC_OSX_FUSET=$((fuset ? 1 : 0)) +export VC_OSX_FUSET=$([ "$fuset" = true ] && echo 1 || echo 0) if [ "$fuset" = true ]; then echo "Building VeraCrypt with FUSE-T support" -- cgit v1.2.3