From 05d7fc1de5637caa5bc5923ebf7158c11337c47a Mon Sep 17 00:00:00 2001 From: Antoine Pilote Date: Thu, 25 Apr 2024 22:43:59 -0400 Subject: [PATCH] Fixed Nuake.Net copy command failing --- NuakeNet/premake5.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/NuakeNet/premake5.lua b/NuakeNet/premake5.lua index cef4d968..eb3d9288 100644 --- a/NuakeNet/premake5.lua +++ b/NuakeNet/premake5.lua @@ -22,6 +22,6 @@ project "NuakeNet" } postbuildcommands { - '{ECHO} Copying "%{wks.location}/NuakeNet/bin/%{cfg.buildcfg}/NuakeNet.dll" to "%{wks.location}/Editor"', - '{COPYFILE} "%{wks.location}/NuakeNet/bin/%{cfg.buildcfg}/NuakeNet.dll" "%{wks.location}/Editor"' + '{ECHO} Copying "%{wks.location}/NuakeNet/bin/$(Configuration)/NuakeNet.dll" to "%{wks.location}/Editor"', + '{COPYFILE} "%{wks.location}/NuakeNet/bin/$(Configuration)/NuakeNet.dll" "%{wks.location}/Editor"' }