From d755be972a0700f9d0504234be0cb19d757d4b8b Mon Sep 17 00:00:00 2001 From: Bear Date: Mon, 5 Jan 2026 05:21:28 -0600 Subject: [PATCH 1/2] fixes version not being in a folder --- build.gradle | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 215a020..76d51af 100644 --- a/build.gradle +++ b/build.gradle @@ -815,6 +815,7 @@ tasks.register('release') { } // Copy to bundles_build directory (non-zip dev artifact) + // Structure: bearsampp-build/tmp/bundles_build/tools/powershell/powershell7.5.4/ println "" println "Copying to bundles_build directory..." def powershellBuildPath = file("${bundleTmpBuildPath}/${bundleName}${bundleVersion}") @@ -822,10 +823,20 @@ tasks.register('release') { delete powershellBuildPath } powershellBuildPath.mkdirs() + + // First copy PowerShell binaries copy { - from bundleTmpPrepPath + from bundleSrcFinal + into powershellBuildPath + } + + // Then overlay bundle-specific files (config, scripts, etc.) + copy { + from bundlePath into powershellBuildPath + exclude 'deps.properties' } + println "Non-zip version available at: ${powershellBuildPath}" // Determine build output path following Bearsampp pattern From 5ecabd25a385442d4bd61da3b1d5047b8291b972 Mon Sep 17 00:00:00 2001 From: Bear Date: Mon, 5 Jan 2026 05:28:46 -0600 Subject: [PATCH 2/2] fixes version not being in a folder --- build.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.properties b/build.properties index 3f6b71b..7fd270a 100644 --- a/build.properties +++ b/build.properties @@ -1,5 +1,5 @@ bundle.name = powershell -bundle.release = 2025.11.30 +bundle.release = 2026.1.5 bundle.type = tools bundle.format = 7z