mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-14 11:39:16 +08:00
9 lines
254 B
PowerShell
9 lines
254 B
PowerShell
$path = $env:APPVEYOR_BUILD_FOLDER + "\Deploy\UpdateGenerator"
|
|
|
|
$current_path = Convert-Path .
|
|
Write-Host "Current path: " + $current_path
|
|
Write-Host "Target path: " + $path
|
|
|
|
Set-Location $path
|
|
& ".\Wox.UpdateFeedGenerator.exe"
|
|
Set-Location $current_path |