diff options
Diffstat (limited to 'build.ps1')
| -rw-r--r-- | build.ps1 | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -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 |
