mirror of
https://github.com/anomalyco/opencode.git
synced 2026-07-25 12:45:51 -04:00
debug: fix Windows repro workflow args
This commit is contained in:
@@ -208,9 +208,12 @@ jobs:
|
||||
- name: Run Windows standalone repro
|
||||
timeout-minutes: 30
|
||||
run: |
|
||||
$reproArgs = @("-Version", "${{ matrix.version }}", "-MarkdownLoops", "${{ matrix.markdownLoops }}")
|
||||
$reproArgs = @{
|
||||
Version = "${{ matrix.version }}"
|
||||
MarkdownLoops = ${{ matrix.markdownLoops }}
|
||||
}
|
||||
if ("${{ matrix.onlyMarkdown }}" -eq "true") {
|
||||
$reproArgs += "-OnlyMarkdown"
|
||||
$reproArgs.OnlyMarkdown = $true
|
||||
}
|
||||
./script/repro-windows-opentui-crash.ps1 @reproArgs
|
||||
|
||||
|
||||
Reference in New Issue
Block a user