Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
maxkatz6 committed Nov 14, 2022
1 parent 8d87ec9 commit 32cedf8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/build-test.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ function Test-Template {
[Parameter(Position=2,Mandatory=1)][string]$lang
)

$outDir = [IO.Path]::GetFullPath([IO.Path]::Combine($pwd, ".\output"))
$outDir = [IO.Path]::GetFullPath([IO.Path]::Combine($pwd, "..", "output"))

# Create the project
Exec { dotnet new $template -o $outDir/$lang/$name -lang $lang }
Expand All @@ -56,7 +56,7 @@ function Test-Template {
}

# Build
Exec { dotnet build output/$lang/$name }
Exec { dotnet build $outDir/$lang/$name }
}

function Create-And-Build {
Expand Down

0 comments on commit 32cedf8

Please sign in to comment.