From 0b3f7169f9712cd7b678f3d64dd521753947e885 Mon Sep 17 00:00:00 2001 From: Brendan Hansen Date: Sat, 2 Dec 2023 08:49:08 -0600 Subject: [PATCH] fixed: package manager not included on Windows release --- build.bat | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/build.bat b/build.bat index 988ecadf..fd961f17 100644 --- a/build.bat +++ b/build.bat @@ -43,6 +43,11 @@ if "%1" == "dist" ( xcopy tests dist\tests /s /e /h /I copy onyx.exe dist\onyx.exe + mkdir dist\tools + copy scripts\onyx-pkg.onyx dist\tools\onyx-pkg.onyx + mkdir dist\tools\pkg_templates + copy scripts\default.json dist\tools\pkg_templates\default.json + powershell Compress-Archive dist onyx.zip move onyx.zip dist/onyx.zip ) -- 2.25.1