Skip to content

Commit

Permalink
Update download_kurukuru.ps1
Browse files Browse the repository at this point in the history
  • Loading branch information
kzrnm authored Sep 23, 2024
1 parent 1c58d0d commit e86ab19
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/download_kurukuru.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ param (
$nupkgPath = "$PSScriptRoot/../tmp/kurukuru.nupkg"

if (-not $NoDownload) {
mkdir tmp -Force
mkdir "$PSScriptRoot/../tmp/" -Force
Invoke-WebRequest "https://www.nuget.org/api/v2/package/Kurukuru/" -OutFile $nupkgPath
if (Test-Path ./tmp/kurukuru) {
Remove-Item -Recurse ./tmp/kurukuru -Force
Expand Down Expand Up @@ -37,4 +37,4 @@ if ($downloadedAsmVersion.CompareTo($currentAsmVersion) -gt 0) {

Write-Output "Download new Kurukuru.dll $(Resolve-Path "$PSScriptRoot/../tmp/New-Kurukuru.dll")"
Write-Output "kurukuru-version=$downloadedAsmVersion" >> $env:GITHUB_OUTPUT
}
}

0 comments on commit e86ab19

Please sign in to comment.