From 164ec4ab71931cee6cc92ac6b34e0d41d1cf830e Mon Sep 17 00:00:00 2001 From: "Rustam @SecondFry Gubaydullin" Date: Sun, 3 Dec 2023 06:37:06 +0300 Subject: [PATCH] Fix build_mac_installer.sh, replace colon with semicolon --- build_mac_installer.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build_mac_installer.sh b/build_mac_installer.sh index 022e4eb..f35544c 100755 --- a/build_mac_installer.sh +++ b/build_mac_installer.sh @@ -4,7 +4,7 @@ python -O -m PyInstaller \ --clean \ --windowed \ --icon resources/images/app_icon.icns \ - --add-data 'src/database/*:database' \ + --add-data 'src/database/*;database' \ --noconfirm \ --name shortcircuit src/main.py \ --noupx \