Skip to content

Commit

Permalink
yml
Browse files Browse the repository at this point in the history
  • Loading branch information
DanHarltey committed Jan 12, 2024
1 parent 7ab27f2 commit 392e5df
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,18 @@ image:
- macOS
install:
- pwsh: |
if ($isWindows) {
echo "Do nothing"
}
else {
Invoke-WebRequest "https://dot.net/v1/dotnet-install.sh" -OutFile "./dotnet-install.sh"
sudo chmod u+x dotnet-install.sh
if ($isMacOS) {
sudo ./dotnet-install.sh --install-dir '/usr/local/share/dotnet'
} else {
sudo ./dotnet-install.sh --install-dir '/usr/share/dotnet'
if ($isWindows) {
echo "Do nothing"
}
else {
Invoke-WebRequest "https://dot.net/v1/dotnet-install.sh" -OutFile "./dotnet-install.sh"
sudo chmod u+x dotnet-install.sh
if ($isMacOS) {
sudo ./dotnet-install.sh --install-dir '/usr/local/share/dotnet'
} else {
sudo ./dotnet-install.sh --install-dir '/usr/share/dotnet'
}
}
}
build_script:
- cd scripts
- cmd: .\benchmark.bat
Expand Down

0 comments on commit 392e5df

Please sign in to comment.