Skip to content
This repository has been archived by the owner on Sep 3, 2021. It is now read-only.

Look for winetricks in /usr/local/bin/winetricks #28

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 8 additions & 4 deletions protontricks
Original file line number Diff line number Diff line change
Expand Up @@ -273,10 +273,14 @@ if __name__ == "__main__":

if os.environ.get('WINETRICKS') is None:
print("[INFO] WINETRICKS environment variable is not available. "
"Falling back to /usr/bin/winetricks")
os.environ["WINETRICKS"] = "/usr/bin/winetricks"
if not os.path.exists("/usr/bin/winetricks"):
print("[ERROR!] Winetricks isn't installed, please install "
"Looking for winetricks in "
"/usr/bin/winetricks and /usr/local/bin/winetricks...")
if os.path.exists("/usr/bin/winetricks"):
os.environ["WINETRICKS"] = "/usr/bin/winetricks"
elif os.path.exists("/usr/local/bin/winetricks"):
os.environ["WINETRICKS"] = "/usr/local/bin/winetricks"
else:
print("[ERROR!] Couldn't find winetricks, please install "
"winetricks in order to use this script!")
prereq_fail = True
else:
Expand Down