diff options
| author | rejbasket <39080670+rejbasket@users.noreply.github.com> | 2023-04-28 21:02:05 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-04-28 21:02:05 +0200 |
| commit | 36d528636368709ae93355cb86f70c89f6e36dff (patch) | |
| tree | c58e1083230c89a40ee4fdc17fc957155d6eb565 /lib/gui/electron.py | |
| parent | fd11ad7d8580000e5736bf922efe61f8aca2a9ec (diff) | |
fixed mac dev mode translations (#2248)
updated electron-builder
Authored-by: rejbasket
Diffstat (limited to 'lib/gui/electron.py')
| -rwxr-xr-x | lib/gui/electron.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/gui/electron.py b/lib/gui/electron.py index 651080a9..75e3b16c 100755 --- a/lib/gui/electron.py +++ b/lib/gui/electron.py @@ -37,7 +37,7 @@ def open_url(url): if sys.platform == "darwin" and getattr(sys, 'frozen', None) is None: mac_dev_env = os.environ.copy() # these are paths installed by brew or macports - yarn_path = "/usr/local/bin:/opt/local/bin:" + yarn_path = "/opt/homebrew/bin:/usr/local/bin:/opt/local/bin:" if yarn_path in mac_dev_env["PATH"]: pass else: |
