Changed README

This commit is contained in:
Bert van der Weerd 2022-08-19 22:07:55 +02:00
parent 37b33ea0ca
commit ea58161133
No known key found for this signature in database
GPG key ID: 73370A0B9E5516B0

View file

@ -56,8 +56,3 @@ To actually submit these artifacts to the Windows repository as release files, u
``` ```
python3 mk.py upload <token> python3 mk.py upload <token>
``` ```
This would involve having a valid token, ofcourse, but also something more: [Git for Windows](https://git-scm.com/). From this package, we only need `sha256sum.exe` to calculate our checksums. Mozilla provides only `md5sum.exe` in their very old version of the mingw tools. Simply installing Git won't be enough to get `sha256sum.exe` in our path, the `C:\mozilla-build\start-shell.bat` file needs a little tweak at line 55, to read:
```
SET "PATH=%PATH%;!GITDIR!;c:\Program Files\Git\usr\bin"
```
This should put `sha256sum.exe` in your path.