Skip to content

Commit

Permalink
[Normal] Fix Pcak Super
Browse files Browse the repository at this point in the history
  • Loading branch information
ColdWindScholar committed Jun 2, 2024
1 parent ab2732a commit 3ef6f49
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions run.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,9 @@
setfile = o_path.join(LOCALDIR, "bin", "settings.json")
platform = plat.machine()
ostype = plat.system()
if os.getenv('PREFIX') == "/data/data/com.termux/files/usr":
ostype = 'Android'
if os.getenv('PREFIX'):
if os.getenv('PREFIX') == "/data/data/com.termux/files/usr":
ostype = 'Android'
ebinner = o_path.join(binner, ostype, platform) + os.sep
temp = o_path.join(binner, 'temp')

Expand Down

0 comments on commit 3ef6f49

Please sign in to comment.