fix: Correct missing 'endif' in Main.make for MacOSX section

Replaced an incorrect 'end' statement with 'endif' in the
MacOSX-specific section of the Main.make file. This resolves the make
error caused by an unclosed conditional block.
This commit is contained in:
Mounir IDRASSI 2024-06-18 23:36:16 +02:00
parent 688086011d
commit 779d755eac
No known key found for this signature in database
GPG Key ID: FC1B00364B3FE937

View File

@ -229,7 +229,7 @@ ifneq ("$(LOCAL_DEVELOPMENT_BUILD)","true")
else
# copy the unsigned package to the expected location
cp "$(BASE_DIR)/Setup/MacOSX/VeraCrypt $(TC_VERSION).pkg" $(BASE_DIR)/Setup/MacOSX/VeraCrypt_$(TC_VERSION).pkg
end
endif
rm -f $(APPNAME)_$(TC_VERSION).dmg
endif
rm -f "$(BASE_DIR)/Setup/MacOSX/template.dmg"