File tree Expand file tree Collapse file tree 2 files changed +13
-2
lines changed
Expand file tree Collapse file tree 2 files changed +13
-2
lines changed Original file line number Diff line number Diff line change @@ -815,17 +815,28 @@ tasks.register('release') {
815815 }
816816
817817 // Copy to bundles_build directory (non-zip dev artifact)
818+ // Structure: bearsampp-build/tmp/bundles_build/tools/powershell/powershell7.5.4/
818819 println " "
819820 println " Copying to bundles_build directory..."
820821 def powershellBuildPath = file(" ${ bundleTmpBuildPath} /${ bundleName}${ bundleVersion} " )
821822 if (powershellBuildPath. exists()) {
822823 delete powershellBuildPath
823824 }
824825 powershellBuildPath. mkdirs()
826+
827+ // First copy PowerShell binaries
825828 copy {
826- from bundleTmpPrepPath
829+ from bundleSrcFinal
830+ into powershellBuildPath
831+ }
832+
833+ // Then overlay bundle-specific files (config, scripts, etc.)
834+ copy {
835+ from bundlePath
827836 into powershellBuildPath
837+ exclude ' deps.properties'
828838 }
839+
829840 println " Non-zip version available at: ${ powershellBuildPath} "
830841
831842 // Determine build output path following Bearsampp pattern
Original file line number Diff line number Diff line change 11bundle.name = powershell
2- bundle.release = 2025.11.30
2+ bundle.release = 2026.1.5
33bundle.type = tools
44bundle.format = 7z
55
You can’t perform that action at this time.
0 commit comments