From 7a3598817dd4a99b5b8408e69d98b2a265ff1dd2 Mon Sep 17 00:00:00 2001 From: idk Date: Tue, 17 May 2022 17:18:12 -0400 Subject: [PATCH] Update su3 signing procedure --- README.md | 23 +++++++++++------------ 1 file changed, 11 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index 6b9fcf3..1cbb6a4 100644 --- a/README.md +++ b/README.md @@ -210,7 +210,13 @@ Certificate which Windows will recognize. The current signer of the Windows bundle is Zlatinb. Standard Windows signing tools are used. ```sh -./clean.sh && wsl make clean && ./build.sh && make +# Release Copypasta +./clean.sh +wsl make distclean +wsl make clean-extensions +wsl make extensions +./build.sh +make ./sign.sh ``` @@ -218,21 +224,14 @@ Building a signed update file ----------------------------- Building a signed update file for automatically updating a Windows I2P router -requires you to also have Go installed in your Cygwin or WSL environment. -With WSL, you can do this using the command: +requires you to either be using linux, or have Go installed in your Cygwin or WSL environment. +On Linux(Where I sign the su3 files), this works: - wsl sudo apt-get install golang-go + make su3 -With that dependency satisfied, you can then run: - - wsl make su3 - -to build the signing tool if necessary and then package the installer in a +to run the signing tool if necessary and then package the installer in a signed update file. -It's also probably possible to do this with the Java I2P distribution and a -`.bat` script. - Docker Support --------------