Skip to content

Commit

Permalink
Fix missing quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
StefMa authored Oct 8, 2024
1 parent d222aad commit 7aca398
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/pkl-workflows/ci.pkl
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs {
name = "Confirm download (unix)"
`if` = "matrix.os != 'windows-latest'"
run = """
pkl --version | grep "Pkl ${{ env.CHECK_VERSION }}
pkl --version | grep "Pkl ${{ env.CHECK_VERSION }}"
"""
}
new {
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.generated.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
pkl-version: ${{ env.CHECK_VERSION }}
- name: Confirm download (unix)
if: matrix.os != 'windows-latest'
run: pkl --version | grep "Pkl ${{ env.CHECK_VERSION }}
run: pkl --version | grep "Pkl ${{ env.CHECK_VERSION }}"
- name: Confirm download (windows)
if: matrix.os == 'windows-latest'
run: .github/pkl-workflows/Check-Version.ps1 "Pkl ${{ env.CHECK_VERSION }}"

0 comments on commit 7aca398

Please sign in to comment.