Skip to content

Commit

Permalink
FIX: shell script syntax (#147)
Browse files Browse the repository at this point in the history
  • Loading branch information
jorgepiloto committed Jan 23, 2023
1 parent 200ce4f commit 471a23a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions doc-build/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ runs:
run: |
make -C doc html SPHINXOPTS="${{ inputs.sphinxopts }}"
make -C doc pdf
if [[ ${{ inputs.skip-json-build == 'false' }} ]];
if [[ ${{ inputs.skip-json-build }} == 'false' ]];
then
make -C doc json SPHINXOPTS="${{ inputs.sphinxopts }}"
fi
Expand All @@ -121,7 +121,7 @@ runs:
run: |
xvfb-run make -C doc html SPHINXOPTS="${{ inputs.sphinxopts }}"
xvfb-run make -C doc pdf
if [[ ${{ inputs.skip-json-build == 'false' }} ]];
if [[ ${{ inputs.skip-json-build }} == 'false' ]];
then
xvfb-run make -C doc json SPHINXOPTS="${{ inputs.sphinxopts }}"
fi
Expand Down

0 comments on commit 471a23a

Please sign in to comment.