Skip to content

Commit b3d5a6d

Browse files
committed
Fixed argument passing
1 parent f263861 commit b3d5a6d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/run-demo.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ 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+
Start-Process -FilePath $exePath -ArgumentList @("-dsn", "${{ secrets.DSN }}") -Wait -PassThru -NoNewWindow
3232
$endTime = Get-Date
3333
$duration = $endTime - $startTime
3434
Write-Output "Game finished in $($duration.ToString('hh\:mm\:ss'))"

0 commit comments

Comments
 (0)