summaryrefslogtreecommitdiffhomepage
path: root/build.ps1
diff options
context:
space:
mode:
Diffstat (limited to 'build.ps1')
-rw-r--r--build.ps16
1 files changed, 5 insertions, 1 deletions
diff --git a/build.ps1 b/build.ps1
index 25f2953..f01eb63 100644
--- a/build.ps1
+++ b/build.ps1
@@ -66,7 +66,8 @@ $DistElems = @(
"README.md",
"dpibreak.1.md"
"CHANGELOG",
- "COPYING"
+ "COPYING",
+ "WINDOWS_GUIDE.txt"
)
# --- Function Definitions ---
@@ -144,6 +145,9 @@ function New-ReleaseZip {
Copy-Item -Path $sourcePath -Destination $destinationPath
}
+ # Copy windows start scripts (for release)
+ Copy-Item (Join-Path $PSScriptRoot "res\windows_bats\*") -Destination $DistPath -Recurse -Force
+
# 4. Compress files into a ZIP archive
Write-Host "Compressing files into '$ZipBallPath'..."
Push-Location -Path $DistDir