From aaf99a3fd89f056e2a74fefc29d1664f835dafb0 Mon Sep 17 00:00:00 2001 From: Chidi Williams Date: Tue, 27 Sep 2022 23:27:01 +0100 Subject: [PATCH] Update build commands --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 400eafb4..b27c1d44 100644 --- a/Makefile +++ b/Makefile @@ -6,7 +6,7 @@ clean: bundle_mac: make buzz - tar -czf dist/Buzz.zip dist/Buzz + tar -czf dist/buzz-${version}-unix.zip dist/Buzz mkdir -p dist/dmg && cp -r dist/Buzz.app dist/dmg create-dmg \ --volname "Buzz" \ @@ -17,11 +17,11 @@ bundle_mac: --icon "dist/Buzz.app/Contents/Resources/icon-windowed.icns" 175 120 \ --hide-extension "Buzz.app" \ --app-drop-link 425 120 \ - "dist/Buzz.dmg" \ + "dist/buzz-${version}-mac.dmg" \ "dist/dmg/" release: make clean - make bundle_mac + make bundle_mac version=${version} poetry version ${version} git tag "v${version}"