From 264429f313ea3384f408376d71091332a62c5599 Mon Sep 17 00:00:00 2001 From: Micah Lee Date: Thu, 20 Feb 2020 12:26:24 -0800 Subject: [PATCH] Call the Windows build script build.bat, and update build instructions --- BUILD.md | 6 +++--- install/windows/{make_installer.bat => build.bat} | 0 2 files changed, 3 insertions(+), 3 deletions(-) rename install/windows/{make_installer.bat => build.bat} (100%) diff --git a/BUILD.md b/BUILD.md index 3124f57..cef74da 100644 --- a/BUILD.md +++ b/BUILD.md @@ -178,12 +178,12 @@ poetry run pyinstaller install\pyinstaller\pyinstaller.spec ### To build the installer -Note that you must have a codesigning certificate installed in order to use the `install\windows\build_exe.bat` script, because it codesigns `dangerzone.exe`, `uninstall.exe`, and `dangerzone-setup.exe`. +Note that you must have a codesigning certificate installed in order to use the `install\windows\build.bat` script, because it codesigns `dangerzone.exe` and `Dangerzone.msi`. Open a command prompt, cd to the dangerzone directory, and run: ``` -poetry run install\build_exe.bat +poetry run install\windows\build.bat ``` -This will prompt you to codesign three binaries and execute one unsigned binary. When you're done clicking through everything you will have `dist\dangerzone-setup.exe`. \ No newline at end of file +When you're done you will have `dist\Dangerzone.msi`. \ No newline at end of file diff --git a/install/windows/make_installer.bat b/install/windows/build.bat similarity index 100% rename from install/windows/make_installer.bat rename to install/windows/build.bat