From ddd1e3027cb5d182960d0a457449216c5aa4616f Mon Sep 17 00:00:00 2001 From: SirLynix Date: Thu, 16 Jun 2022 19:26:19 +0200 Subject: [PATCH] XMake: Make compile-shader task verbose --- xmake/actions/compile_shaders.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xmake/actions/compile_shaders.lua b/xmake/actions/compile_shaders.lua index 2954b3b46..b03e80bfb 100644 --- a/xmake/actions/compile_shaders.lua +++ b/xmake/actions/compile_shaders.lua @@ -33,6 +33,6 @@ task("compile-shaders") if option.get("benchmark-iteration") then table.insert(argv, "--benchmark-iteration=" .. option.get("benchmark-iteration")) end - os.execv(nzsl, argv, { envs = envs }) + os.vrunv(nzsl, argv, { envs = envs }) end end)