mirror of
https://forge.fsky.io/oneflux/omegafox.git
synced 2026-02-11 09:12:03 -08:00
pythonlib: Fix MacOS target path
This commit is contained in:
parent
5e1fb78cfc
commit
a05379fd38
1 changed files with 1 additions and 2 deletions
|
|
@ -1,4 +1,3 @@
|
||||||
# Set to environment variables
|
|
||||||
import os
|
import os
|
||||||
import sys
|
import sys
|
||||||
from os import environ
|
from os import environ
|
||||||
|
|
@ -24,7 +23,7 @@ from .xpi_dl import add_default_addons
|
||||||
LAUNCH_FILE = {
|
LAUNCH_FILE = {
|
||||||
'win': 'camoufox.exe',
|
'win': 'camoufox.exe',
|
||||||
'lin': 'camoufox-bin',
|
'lin': 'camoufox-bin',
|
||||||
'mac': 'camoufox',
|
'mac': '../MacOS/camoufox',
|
||||||
}
|
}
|
||||||
|
|
||||||
ListOrString: TypeAlias = Union[Tuple[str, ...], List[str], str]
|
ListOrString: TypeAlias = Union[Tuple[str, ...], List[str], str]
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue