Update su3 signing procedure

This commit is contained in:
idk
2022-05-17 17:18:12 -04:00
parent 8e95435be0
commit 7a3598817d

View File

@@ -210,7 +210,13 @@ Certificate which Windows will recognize. The current signer of the Windows
bundle is Zlatinb. Standard Windows signing tools are used. bundle is Zlatinb. Standard Windows signing tools are used.
```sh ```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 ./sign.sh
``` ```
@@ -218,21 +224,14 @@ Building a signed update file
----------------------------- -----------------------------
Building a signed update file for automatically updating a Windows I2P router 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. requires you to either be using linux, or have Go installed in your Cygwin or WSL environment.
With WSL, you can do this using the command: 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: to run the signing tool if necessary and then package the installer in a
wsl make su3
to build the signing tool if necessary and then package the installer in a
signed update file. signed update file.
It's also probably possible to do this with the Java I2P distribution and a
`.bat` script.
Docker Support Docker Support
-------------- --------------