Skip to content

Commit e96625c

Browse files
committed
fix double to single quotes
1 parent d6b9d0d commit e96625c

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/hipo-macos-gh.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
4646
- name: Install GKlib Release
4747
working-directory: GKlib
48-
if: ${{ matrix.config == "Release"}}
48+
if: ${{ matrix.config == 'Release' }}
4949
run: |
5050
cd GKlib
5151
make config shared=1 prefix=${{runner.workspace}}/installs
@@ -54,7 +54,7 @@ jobs:
5454
5555
- name: Install GKlib Debug
5656
working-directory: GKlib
57-
if: ${{ matrix.config == "Debug"}}
57+
if: ${{ matrix.config == 'Debug' }}
5858
run: |
5959
cd GKlib
6060
make config shared=1 prefix=${{runner.workspace}}/installs gdb=1 debug=1

.github/workflows/hipo-ubuntu-gh.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
4747
- name: Install GKlib Release
4848
working-directory: GKlib
49-
if: ${{ matrix.config == "Release"}}
49+
if: ${{ matrix.config == 'Release' }}
5050
run: |
5151
cd GKlib
5252
make config shared=1 prefix=${{runner.workspace}}/installs
@@ -55,7 +55,7 @@ jobs:
5555
5656
- name: Install GKlib Debug
5757
working-directory: GKlib
58-
if: ${{ matrix.config == "Debug"}}
58+
if: ${{ matrix.config == 'Debug' }}
5959
run: |
6060
cd GKlib
6161
make config shared=1 prefix=${{runner.workspace}}/installs gdb=1 debug=1

0 commit comments

Comments
 (0)