Skip to content

Commit ecb6e85

Browse files
committed
fix missing bracket
1 parent ef15dd9 commit ecb6e85

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/test-pypi.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ jobs:
8686
$i = 0
8787
do {
8888
$i++
89-
Write-Host "Attempt $i: installing paint-csp-test==${env:VERSION}"
89+
Write-Host "Attempt ${i}: installing paint-csp-test==${env:VERSION}"
9090
pip install --index-url https://test.pypi.org/simple/ `
9191
--extra-index-url https://pypi.org/simple `
9292
--pre `
@@ -95,7 +95,7 @@ jobs:
9595
Write-Host "Install succeeded"
9696
break
9797
}
98-
Write-Host "Not ready yet, retrying in $sleepSeconds seconds..."
98+
Write-Host "Not ready yet, retrying in ${sleepSeconds} seconds..."
9999
Start-Sleep -Seconds $sleepSeconds
100100
} while ($i -lt $maxAttempts)
101101

0 commit comments

Comments
 (0)