Skip to content

Commit

Permalink
macOS: fix regression in build script that caused it to ignore fuset …
Browse files Browse the repository at this point in the history
…switch

fixed by Mattoje #1417
  • Loading branch information
idrassi committed Sep 17, 2024
1 parent 5c485e8 commit 866fc8f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Build/build_veracrypt_macosx.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 866fc8f

Please sign in to comment.