From 57f9c6bf2c7e71b52fdebd772acfd71f53b5b348 Mon Sep 17 00:00:00 2001 From: Micah Lee Date: Tue, 29 Jun 2021 16:53:58 -0700 Subject: [PATCH] Fix pyinstaller path --- install/pyinstaller/pyinstaller.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/pyinstaller/pyinstaller.spec b/install/pyinstaller/pyinstaller.spec index 8c5b8e1..0207c32 100644 --- a/install/pyinstaller/pyinstaller.spec +++ b/install/pyinstaller/pyinstaller.spec @@ -17,7 +17,7 @@ with open(os.path.join(root, "share", "version.txt")) as f: print("Dangerzone version: {}".format(version)) if p == "Darwin": - datas = [("../../share", "share"), ("../macos/../macos/document.icns", ".")] + datas = [("../../share", "share"), ("../macos/document.icns", ".")] else: datas = [("../../share", "share")]