Skip to content

Commit 48cd2d2

Browse files
authored
render/action.yml: add missing space to inline bash script (#51)
I had been seeing this in my github action runs: /home/runner/work/_temp/caead89a-f3b1-44e5-bdd3-cd2ff43d26ef.sh: line 8: [: missing `]' and I think adding the space there should resolve it. Signed-off-by: Stephan Renatus <[email protected]> Signed-off-by: Stephan Renatus <[email protected]>
1 parent 3cf8a3e commit 48cd2d2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

render/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ runs:
2121
fi
2222
if [ -f "_book" ]; then
2323
echo "QUARTO_OUTPUT=_book" >> $GITHUB_ENV
24-
elif [ -f "_site"]; then
24+
elif [ -f "_site" ]; then
2525
echo "QUARTO_OUTPUT=_site" >> $GITHUB_ENV
2626
fi
2727
shell: bash

0 commit comments

Comments
 (0)