Skip to content

Commit

Permalink
Remove trailing separator from root path
Browse files Browse the repository at this point in the history
  • Loading branch information
elzik committed Oct 20, 2023
1 parent f5e2e80 commit 2bf7746
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Build/build-and-test.ps1
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
$repoRootPath = (Resolve-Path "$PSScriptRoot/../").Path
$repoRootPath = $repoRootPath.Substring(0,$repoRootPath.Length-1)
Write-Output "Repo root path:$repoRootPath"

dotnet test $repoRootPath/Elzik.FmSync.sln `
-c Release `
Expand Down
2 changes: 2 additions & 0 deletions Build/build-windows-installer.ps1
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
$repoRootPath = (Resolve-Path "$PSScriptRoot/../").Path
$repoRootPath = $repoRootPath.Substring(0,$repoRootPath.Length-1)
Write-Output "Repo root path:$repoRootPath"

dotnet publish $repoRootPath\src\Elzik.FmSync.Worker\Elzik.FmSync.Worker.csproj `
--runtime win-x64 `
Expand Down

0 comments on commit 2bf7746

Please sign in to comment.