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 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