CI: Fix setting ENABLE_WIN32_CONSOLE for MSVC
This commit is contained in:
parent
d576777d94
commit
20d7ae7144
|
@ -1267,12 +1267,12 @@ jobs:
|
|||
run: cmake -E make_directory build
|
||||
|
||||
- name: Set ENABLE_WIN32_CONSOLE (debug)
|
||||
if: matrix.build_type == 'debug'
|
||||
if: matrix.buildtype == 'debug'
|
||||
shell: bash
|
||||
run: echo "win32_console=ON" >> $GITHUB_ENV
|
||||
|
||||
- name: Set ENABLE_WIN32_CONSOLE (release)
|
||||
if: matrix.build_type == 'release'
|
||||
if: matrix.buildtype == 'release'
|
||||
shell: bash
|
||||
run: echo "win32_console=OFF" >> $GITHUB_ENV
|
||||
|
||||
|
|
Loading…
Reference in New Issue