proton: Access env variables directly when we know they are set.
This commit is contained in:
parent
40b964bd30
commit
73c8213f1b
1 changed files with 1 additions and 1 deletions
2
proton
2
proton
|
@ -1487,7 +1487,7 @@ class Session:
|
||||||
self.env["WINEDEBUG"] = "-all"
|
self.env["WINEDEBUG"] = "-all"
|
||||||
|
|
||||||
if "PROTON_REMOTE_DEBUG_CMD" in self.env:
|
if "PROTON_REMOTE_DEBUG_CMD" in self.env:
|
||||||
self.remote_debug_cmd = shlex.split(self.env.get("PROTON_REMOTE_DEBUG_CMD"))
|
self.remote_debug_cmd = shlex.split(self.env["PROTON_REMOTE_DEBUG_CMD"])
|
||||||
else:
|
else:
|
||||||
self.remote_debug_cmd = None
|
self.remote_debug_cmd = None
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue