aboutsummaryrefslogtreecommitdiff
path: root/RELEASE.md
diff options
context:
space:
mode:
authorMicah Lee <micah@micahflee.com>2022-04-03 17:20:31 -0700
committerMicah Lee <micah@micahflee.com>2022-04-03 17:20:31 -0700
commit9b28a9393aec28d94ec89771238c404d1bc89c20 (patch)
tree4fc687eb20e93a55384f678b41a08f6eb6e981a1 /RELEASE.md
parent28655d28c80e3dadcb4c599ee5c8677bd0876ce0 (diff)
downloadonionshare-9b28a9393aec28d94ec89771238c404d1bc89c20.tar.gz
onionshare-9b28a9393aec28d94ec89771238c404d1bc89c20.zip
Move windows and mac build scripts into scripts folder
Diffstat (limited to 'RELEASE.md')
-rw-r--r--RELEASE.md12
1 files changed, 6 insertions, 6 deletions
diff --git a/RELEASE.md b/RELEASE.md
index cab2909b..14b6599c 100644
--- a/RELEASE.md
+++ b/RELEASE.md
@@ -110,9 +110,9 @@ 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 [build_dir]
-poetry run python .\package\windows.py package [build_dir]
+poetry run python .\scripts\build-windows.py cleanup-build
+poetry run python .\scripts\build-windows.py codesign [build_dir]
+poetry run python .\scripts\build-windows.py package [build_dir]
```
This will create `desktop/dist/OnionShare-$VERSION.msi`, signed.
@@ -125,9 +125,9 @@ Then build an executable, make it a macOS app bundle, and package it in a dmg:
```sh
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]
+poetry run python ./scripts/build-macos.py cleanup-build
+poetry run python ./scripts/build-macos.py codesign [app_path]
+poetry run python ./scripts/build-macos.py package [app_path]
```
The will create `dist/OnionShare-$VERSION.dmg`.