Skip to content

Commit

Permalink
chore: use nushell in ci
Browse files Browse the repository at this point in the history
  • Loading branch information
oberrich committed Jan 10, 2025
1 parent 71b3811 commit 51cbf55
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,10 +66,10 @@ jobs:
) | ForEach-Object {
$dep = $_
if ($dep.Url -ne $null) {
Write-Host "Installing package from URL `$($dep.Url)`..."
Write-Host "Installing package from URL `$dep.Url`..."
Add-AppxPackage -Path $dep.Url
} else {
Write-Host "Installing package from `$($dep.Out)`..."
Write-Host "Installing package from `$dep.Out`..."
Add-AppxPackage -Path $dep.Out
}
}
Expand Down

0 comments on commit 51cbf55

Please sign in to comment.