From 9b28a9393aec28d94ec89771238c404d1bc89c20 Mon Sep 17 00:00:00 2001 From: Micah Lee Date: Sun, 3 Apr 2022 17:20:31 -0700 Subject: Move windows and mac build scripts into scripts folder --- RELEASE.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'RELEASE.md') 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`. -- cgit v1.2.3-54-g00ecf