blob: 2f3b4ada0f06695f212de2572ef609682df2589b [file]
param(
[string]$Output
)
$files = Get-ChildItem -Path . -Exclude 'tmp.zip', $Output
Compress-Archive -Path $files -DestinationPath 'tmp.zip' -Force
Move-Item -Path 'tmp.zip' -Destination $Output -Force