From ddcd4dcda8c634fe1cb86fa2ee1fc1dc87cb4551 Mon Sep 17 00:00:00 2001 From: Eric <5089238+emizzle@users.noreply.github.com> Date: Wed, 15 Oct 2025 19:10:02 +1100 Subject: [PATCH] remove setting of path --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index d6a580a..9e4770f 100644 --- a/Makefile +++ b/Makefile @@ -39,7 +39,8 @@ build: run: ifeq ($(OS),Windows_NT) dir libs - cmd /C "set PATH=%CD%\\libs;%PATH% && .\$(BIN_NAME)" + copy libs\libcodex.dll . + $(BIN_NAME) else ./$(BIN_NAME) endif