From 14008183845fb0a7f26695ed635143ee9523b906 Mon Sep 17 00:00:00 2001 From: Zontreck Date: Fri, 3 Nov 2023 01:19:40 -0700 Subject: [PATCH] change proton run command --- lib/proton.dart | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/proton.dart b/lib/proton.dart index 439e5b2..f7a3f96 100644 --- a/lib/proton.dart +++ b/lib/proton.dart @@ -47,8 +47,7 @@ class ProtonState extends State { env.putIfAbsent( "STEAM_COMPAT_CLIENT_INSTALL_PATH", () => "~/.steam"); env.putIfAbsent("STEAM_COMPAT_DATA_PATH", () => dir.path); - await Process.run( - "proton", ["run", "this_program_does_not_exist.exe"], + var res = await Process.run("proton", ["run", "exit"], environment: env); }, )