We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b3d5a6d commit e183ba8Copy full SHA for e183ba8
.github/workflows/run-demo.yml
@@ -28,7 +28,8 @@ jobs:
28
if ($exePath) {
29
Write-Output "Found executable: $($exePath.FullName)"
30
$startTime = Get-Date
31
- Start-Process -FilePath $exePath -ArgumentList @("-dsn", "${{ secrets.DSN }}") -Wait -PassThru -NoNewWindow
+ $argumentList = "-dsn","${{ secrets.DSN }}"
32
+ Start-Process -FilePath $exePath -ArgumentList $argumentList -Wait -PassThru -NoNewWindow
33
$endTime = Get-Date
34
$duration = $endTime - $startTime
35
Write-Output "Game finished in $($duration.ToString('hh\:mm\:ss'))"
0 commit comments