Skip to content

Commit

Permalink
workflows bugfix pwsh comparison operator
Browse files Browse the repository at this point in the history
  • Loading branch information
silverqx committed Aug 12, 2024
1 parent ab527d5 commit 1437d70
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/msvc2022-qt6-drivers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@ jobs:
- name: TinyOrm print linker version
working-directory: ${{ env.TinyORMBuildTree }}
run: |
$tinyTinyOrm = '${{ matrix.build-type.key }}' == 'debug' ? 'TinyOrm0d.dll' : 'TinyOrm0.dll'
$tinyTinyOrm = '${{ matrix.build-type.key }}' -ceq 'debug' ? 'TinyOrm0d.dll' : 'TinyOrm0.dll'
dumpbin.exe /HEADERS .\$tinyTinyOrm | Select-String -SimpleMatch 'linker version'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/msvc2022-qt6.yml
Original file line number Diff line number Diff line change
Expand Up @@ -754,7 +754,7 @@ jobs:
- name: TinyOrm print linker version
working-directory: ${{ env.TinyORMBuildTree }}
run: |
$tinyTinyOrm = '${{ matrix.build-type.key }}' == 'debug' ? 'TinyOrm0d.dll' : 'TinyOrm0.dll'
$tinyTinyOrm = '${{ matrix.build-type.key }}' -ceq 'debug' ? 'TinyOrm0d.dll' : 'TinyOrm0.dll'
dumpbin.exe /HEADERS .\$tinyTinyOrm | Select-String -SimpleMatch 'linker version'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/vcpkg-windows-drivers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -427,7 +427,7 @@ jobs:
- name: TinyOrm print linker version (${{ env.HelloWorldManualBuildName }})
working-directory: ${{ env.TinyORMManualBuildTree }}
run: |
$tinyTinyOrm = '${{ matrix.build-type.key }}' == 'debug' ? 'TinyOrm0d.dll' : 'TinyOrm0.dll'
$tinyTinyOrm = '${{ matrix.build-type.key }}' -ceq 'debug' ? 'TinyOrm0d.dll' : 'TinyOrm0.dll'
dumpbin.exe /HEADERS .\$tinyTinyOrm | Select-String -SimpleMatch 'linker version'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/vcpkg-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -380,7 +380,7 @@ jobs:
- name: TinyOrm print linker version (${{ env.HelloWorldManualBuildName }})
working-directory: ${{ env.TinyORMManualBuildTree }}
run: |
$tinyTinyOrm = '${{ matrix.build-type.key }}' == 'debug' ? 'TinyOrm0d.dll' : 'TinyOrm0.dll'
$tinyTinyOrm = '${{ matrix.build-type.key }}' -ceq 'debug' ? 'TinyOrm0d.dll' : 'TinyOrm0.dll'
dumpbin.exe /HEADERS .\$tinyTinyOrm | Select-String -SimpleMatch 'linker version'
Expand Down

0 comments on commit 1437d70

Please sign in to comment.