Skip to content

Commit

Permalink
chore: fix RunUnityCustom CI script
Browse files Browse the repository at this point in the history
  • Loading branch information
vaind committed May 3, 2022
1 parent 440dd20 commit 4def657
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/Scripts.Integration.Test/IntegrationGlobals.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ function TestDsnFor([string] $platform)
return $dsn
}

function RunUnityCustom([string] $unityPath, [string[]] $arguments)
function RunUnityCustom([string] $unityPath, [string[]] $arguments, [switch] $ReturnLogOutput)
{
If ($unityPath.StartsWith("docker "))
{
Expand All @@ -161,5 +161,5 @@ function RunUnityCustom([string] $unityPath, [string[]] $arguments)

}

return RunUnity $unityPath $arguments
return RunUnity $unityPath $arguments -ReturnLogOutput:$ReturnLogOutput
}

0 comments on commit 4def657

Please sign in to comment.