proton: Dump stdout to /dev/null by default
This commit is contained in:
parent
5d20566c13
commit
7ef0476c2b
1 changed files with 3 additions and 3 deletions
6
proton
6
proton
|
@ -59,12 +59,12 @@ lfile_path = None
|
|||
#env["WINEDEBUG"] = "+tid,+seh,+steamclient"
|
||||
#lfile_path = env["HOME"] + "/steam-" + env["SteamGameId"] + ".log"
|
||||
|
||||
if not lfile_path is None:
|
||||
if lfile_path is None:
|
||||
lfile = open("/dev/null", "w")
|
||||
else:
|
||||
if os.path.exists(lfile_path):
|
||||
os.remove(lfile_path)
|
||||
lfile = open(lfile_path, "w")
|
||||
else:
|
||||
lfile = None
|
||||
|
||||
if "LD_LIBRARY_PATH" in os.environ:
|
||||
env["LD_LIBRARY_PATH"] = libdir + ":" + env["LD_LIBRARY_PATH"]
|
||||
|
|
Loading…
Reference in a new issue