fixed: package manager not included on Windows release
authorBrendan Hansen <brendan.f.hansen@gmail.com>
Sat, 2 Dec 2023 14:49:08 +0000 (08:49 -0600)
committerBrendan Hansen <brendan.f.hansen@gmail.com>
Sat, 2 Dec 2023 14:49:08 +0000 (08:49 -0600)
build.bat

index 988ecadf5f109a28fb789b3658cf05a564d39394..fd961f17ae43f5173f6e730b2eb3fa18c39edd12 100644 (file)
--- 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
 )