Skip to content

Commit 08539be

Browse files
authored
Merge pull request #5
hotfix
2 parents 54799ea + 5ecabd2 commit 08539be

File tree

2 files changed

+13
-2
lines changed

2 files changed

+13
-2
lines changed

build.gradle

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff 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

build.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
bundle.name = powershell
2-
bundle.release = 2025.11.30
2+
bundle.release = 2026.1.5
33
bundle.type = tools
44
bundle.format = 7z
55

0 commit comments

Comments
 (0)