From 0c37f8f54e50b93130da3e5db2c51fdf289e542f Mon Sep 17 00:00:00 2001 From: Speedy_Lex <78314533+speedy-lex@users.noreply.github.com> Date: Tue, 1 Jul 2025 17:09:15 +0200 Subject: [PATCH] change run to a batch script to avoid the exec policy --- run.bat | 5 +++++ run.ps1 | 6 ------ 2 files changed, 5 insertions(+), 6 deletions(-) create mode 100644 run.bat delete mode 100644 run.ps1 diff --git a/run.bat b/run.bat new file mode 100644 index 0000000..8c99458 --- /dev/null +++ b/run.bat @@ -0,0 +1,5 @@ +@echo off +zig build +copy lua\lua54.dll zig-out\bin\ +copy raylib\lib\raylib.dll zig-out\bin +zig build run \ No newline at end of file diff --git a/run.ps1 b/run.ps1 deleted file mode 100644 index 11d8092..0000000 --- a/run.ps1 +++ /dev/null @@ -1,6 +0,0 @@ -zig build - -copy lua/lua54.dll zig-out/bin -copy raylib/lib/raylib.dll zig-out/bin - -zig build run \ No newline at end of file