From: Brendan Hansen Date: Sat, 2 Dec 2023 14:49:08 +0000 (-0600) Subject: fixed: package manager not included on Windows release X-Git-Url: https://git.brendanfh.com/?a=commitdiff_plain;h=0b3f7169f9712cd7b678f3d64dd521753947e885;p=onyx.git fixed: package manager not included on Windows release --- 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 )