Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 12 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -815,17 +815,28 @@ 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}")
if (powershellBuildPath.exists()) {
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
Expand Down
2 changes: 1 addition & 1 deletion build.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
bundle.name = powershell
bundle.release = 2025.11.30
bundle.release = 2026.1.5
bundle.type = tools
bundle.format = 7z

Expand Down