Skip to content

Commit

Permalink
Fix path to publish directory
Browse files Browse the repository at this point in the history
  • Loading branch information
Steve Salas committed Nov 25, 2020
1 parent 980de05 commit 1dd9cc7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion publish-symbol-service.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ function Get-LastCommit([string] $sinceCommitHash) {

function Invoke-Publish() {
push-location 'dotnet-symbol-service'
dotnet publish -c Release -r (Get-OSRID) -o ..\..\dotnet-symbol-service\publish
dotnet publish -c Release -r (Get-OSRID) -o .\publish
if ($LASTEXITCODE -ne 0) {
write-error "Failed to publish with exit code $LASTEXITCODE"
exit $LASTEXITCODE
Expand Down

0 comments on commit 1dd9cc7

Please sign in to comment.