Skip to content

Commit e183ba8

Browse files
committed
Argument lists..
1 parent b3d5a6d commit e183ba8

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/run-demo.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@ jobs:
2828
if ($exePath) {
2929
Write-Output "Found executable: $($exePath.FullName)"
3030
$startTime = Get-Date
31-
Start-Process -FilePath $exePath -ArgumentList @("-dsn", "${{ secrets.DSN }}") -Wait -PassThru -NoNewWindow
31+
$argumentList = "-dsn","${{ secrets.DSN }}"
32+
Start-Process -FilePath $exePath -ArgumentList $argumentList -Wait -PassThru -NoNewWindow
3233
$endTime = Get-Date
3334
$duration = $endTime - $startTime
3435
Write-Output "Game finished in $($duration.ToString('hh\:mm\:ss'))"

0 commit comments

Comments
 (0)