Skip to content

Commit 187e8dc

Browse files
committed
[ci skip] Fix bug in the previous commit 91f28b4.
1 parent 91f28b4 commit 187e8dc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/actions/unix_getlibs_apt/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,10 @@ runs:
3030
libopenexr-dev \
3131
libsdl-dev
3232
# Only install the following if we plan on needing them
33-
if {{ $inputs.need-boost-system }} ; then
33+
if ${{ inputs.need-boost-system }} ; then
3434
sudo apt-get install --no-upgrade libboost-system-dev
3535
fi
36-
if {{ $inputs.need-boost-thread }} ; then
36+
if ${{ inputs.need-boost-thread }} ; then
3737
sudo apt-get install --no-upgrade libboost-thread-dev
3838
fi
3939
# Make sure we have all the tools we want

0 commit comments

Comments
 (0)