diff options
author | fanquake <fanquake@gmail.com> | 2020-02-12 17:59:00 +0800 |
---|---|---|
committer | fanquake <fanquake@gmail.com> | 2022-01-20 18:06:26 +0800 |
commit | b3ccf26df47c70e7559625a0e65205648f64efb7 (patch) | |
tree | 53bb87c1341e8ec81f6fd4584bda9b3d87eea34a /share | |
parent | 63fc2f5cce6a73bf845e6f1b51f786c4f860e65f (diff) |
build: force CRCCheck in Windows installer
Otherwise a user can pass /NCRC on the command line and bypass the
crc check, meaning they could install a potentially corrupted
installer.
Diffstat (limited to 'share')
-rw-r--r-- | share/setup.nsi.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/share/setup.nsi.in b/share/setup.nsi.in index 85ae7c57af..c7b149345c 100644 --- a/share/setup.nsi.in +++ b/share/setup.nsi.in @@ -53,7 +53,7 @@ Var StartMenuGroup # Installer attributes InstallDir $PROGRAMFILES64\Bitcoin -CRCCheck on +CRCCheck force XPStyle on BrandingText " " ShowInstDetails show |