Use correct .target_arch path
This commit is contained in:
parent
330be2fb16
commit
6ace5a8e3e
1 changed files with 2 additions and 2 deletions
|
@ -31,8 +31,8 @@ def get_platform_key():
|
||||||
def get_target_arch():
|
def get_target_arch():
|
||||||
try:
|
try:
|
||||||
target_arch_path = os.path.join(__file__, '..', '..', '..', 'vendor',
|
target_arch_path = os.path.join(__file__, '..', '..', '..', 'vendor',
|
||||||
'brightray', 'vendor', 'download',
|
'download', 'libchromiumcontent',
|
||||||
'libchromiumcontent', '.target_arch')
|
'.target_arch')
|
||||||
with open(os.path.normpath(target_arch_path)) as f:
|
with open(os.path.normpath(target_arch_path)) as f:
|
||||||
return f.read().strip()
|
return f.read().strip()
|
||||||
except IOError as e:
|
except IOError as e:
|
||||||
|
|
Loading…
Add table
Reference in a new issue