Skip to content

Commit 06cbf1e

Browse files
committed
Add dist archive create to build script
1 parent 5dd06ce commit 06cbf1e

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

build.ps1

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,10 @@ if (Test-Path ./build) {
33
Remove-Item -Path ./build -Recurse
44
}
55
New-Item -Path ./build -ItemType directory > $null
6+
New-Item -Path ./dist -ItemType directory > $null
67
Copy-Item -Path ./target/release/tabletdrivercleanup.exe -Destination ./build
78
Copy-Item -Path ./eng/dump.bat -Destination ./build
89
Copy-Item -Path ./eng/dry_run.bat -Destination ./build
910
Copy-Item -Path ./eng/no_prompt_uninstall.bat -Destination ./build
10-
Copy-Item -Path ./eng/internal_config_only.bat -Destination ./build
11+
Copy-Item -Path ./eng/internal_config_only.bat -Destination ./build
12+
Compress-Archive -Force ./build/* ./dist/tabletdrivercleanup.zip

0 commit comments

Comments
 (0)