Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 7941288

Browse files
authored
Fix IF syntax in check.yml
1 parent 38df3e3 commit 7941288

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/check.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363
id: pyver
6464
shell: bash
6565
run: |
66-
if [[ "${{ inputs.py_bin_ver }}" != '' ]]
66+
if [[ "${{ inputs.py_bin_ver }}" != '' ]]; then
6767
pyver=${{ inputs.py_bin_ver }}
6868
else
6969
pyver=$PYDOC_VERSION
@@ -140,7 +140,7 @@ jobs:
140140
id: pyver
141141
shell: bash
142142
run: |
143-
if [[ "${{ inputs.py_bin_ver }}" != '' ]]
143+
if [[ "${{ inputs.py_bin_ver }}" != '' ]]; then
144144
pyver=${{ inputs.py_bin_ver }}
145145
else
146146
pyver=$PYDOC_VERSION

0 commit comments

Comments
 (0)