From 4e8b095e311115978cb8b2e63e159b4a34e82fd2 Mon Sep 17 00:00:00 2001 From: Persson-dev Date: Sun, 11 Dec 2022 13:04:00 +0100 Subject: [PATCH] xmake.lua show wine console output --- xmake.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xmake.lua b/xmake.lua index 33f0414..0fc95c2 100644 --- a/xmake.lua +++ b/xmake.lua @@ -45,7 +45,7 @@ target("TowerDefense") if is_host("linux") and is_os("windows") then on_run(function(target) os.cd("test") - os.runv("wine", {target:targetfile()}) + os.execv("wine", {target:targetfile()}) end) end