aboutsummaryrefslogtreecommitdiff
path: root/RELEASE.md
diff options
context:
space:
mode:
Diffstat (limited to 'RELEASE.md')
-rw-r--r--RELEASE.md9
1 files changed, 6 insertions, 3 deletions
diff --git a/RELEASE.md b/RELEASE.md
index 958275cc..cab2909b 100644
--- a/RELEASE.md
+++ b/RELEASE.md
@@ -111,8 +111,8 @@ Build the Windows binaries, delete extra files, codesign, and create an MSI pack
```
poetry run python .\setup-freeze.py build
poetry run python .\package\windows.py cleanup-build
-poetry run python .\package\windows.py codesign
-poetry run python .\package\windows.py package
+poetry run python .\package\windows.py codesign [build_dir]
+poetry run python .\package\windows.py package [build_dir]
```
This will create `desktop/dist/OnionShare-$VERSION.msi`, signed.
@@ -124,7 +124,10 @@ Set up the development environment described in `README.md`.
Then build an executable, make it a macOS app bundle, and package it in a dmg:
```sh
-poetry run ./package/build-mac.py
+poetry run python ./setup-freeze.py bdist_mac
+poetry run python ./package/macos.py cleanup-build
+poetry run python ./package/macos.py codesign [app_path]
+poetry run python ./package/macos.py package [app_path]
```
The will create `dist/OnionShare-$VERSION.dmg`.