From 592009d4d12efc1510a5dd84dfe9531dd595ecd4 Mon Sep 17 00:00:00 2001 From: deeplow Date: Fri, 14 Apr 2023 08:50:48 +0100 Subject: [PATCH] Fix build_app_bundle() (missing arguments) --- install/macos/build-app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/macos/build-app.py b/install/macos/build-app.py index 815aa6f..9b26864 100755 --- a/install/macos/build-app.py +++ b/install/macos/build-app.py @@ -19,7 +19,7 @@ def run(cmd): subprocess.run(cmd, cwd=root, check=True) -def build_app_bundle(): +def build_app_bundle(build_path, dist_path, app_path): """ Builds the Dangerzone.app bundle and saves it in dist/Dangerzone.app """