Skip to content

Commit

Permalink
chore: improve ci powershell
Browse files Browse the repository at this point in the history
  • Loading branch information
oberrich committed Jan 10, 2025
1 parent 75d4d95 commit d4f05f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ jobs:
Log "Downloading $($dep.Name) from '$($dep.Url)'..."
$install_file = Join-Path "${{ github.workspace }}" (Split-Path $dep.Url -Leaf)
Invoke-WebRequest -Uri $dep.Url -OutFile $install_file
} else {
} elseif ($dep.Url -ne $null) {
Log "Using local files from '$($dep.Url)'..."
$install_file = $dep.Url
}
Expand Down

0 comments on commit d4f05f3

Please sign in to comment.