This commit is contained in:
Vladimir Safonkin 2021-02-04 10:36:14 +03:00
parent bb2233aaa5
commit 831e0d4070
2 changed files with 1 additions and 4 deletions

View File

@ -62,8 +62,7 @@ jobs:
- name: Verify nuget config file - name: Verify nuget config file
shell: pwsh shell: pwsh
run: | run: |
Get-ChildItem . if (-Not (Test-Path "../nuget.config")) { throw "nuget file not generated correctly" }
# if (-Not (Test-Path "./nuget.config")) { throw "nuget file not generated correctly" }
- name: Verify dotnet - name: Verify dotnet
if: runner.os != 'windows' if: runner.os != 'windows'
run: __tests__/verify-dotnet.sh 3.1.201 2.2.402 run: __tests__/verify-dotnet.sh 3.1.201 2.2.402

View File

@ -3,8 +3,6 @@ if (!$args[0])
throw "Must supply dotnet version argument" throw "Must supply dotnet version argument"
} }
Get-ChildItem .
$dotnet = Get-Command dotnet | Select-Object -First 1 | ForEach-Object { $_.Path } $dotnet = Get-Command dotnet | Select-Object -First 1 | ForEach-Object { $_.Path }
Write-Host "Found '$dotnet'" Write-Host "Found '$dotnet'"