Skip to content

Commit 30537ee

Browse files
committed
Use correct quoted syntax
1 parent 3ceb16d commit 30537ee

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: .github/workflows/test.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@ jobs:
1717
run: |
1818
sudo apt-get update -y -qq
1919
sudo apt-get install -y make autoconf automake make libyajl-dev libxml2-dev libmaxminddb-dev libpcre2-dev libpcre2-8-0 libpcre2-16-0 libpcre2-32-0 libcurl4-gnutls-dev
20-
if [ ${{ matrix.platform }} == 'x32' ]; then
20+
if [ "${{ matrix.platform }}" == "x32" ]; then
2121
sudo dpkg --add-architecture i386
2222
sudo apt-get install -y gcc-multilib
2323
export CFLAGS="-m32"
2424
export LDFLAGS="-m32"
2525
fi
26-
if [ ${{ matrix.compiler }} == 'gcc' ]; then
26+
if [ "${{ matrix.compiler }}" == "gcc" ]; then
2727
sudo apt-get install -y gcc
2828
export CC=$(which gcc)
2929
else

0 commit comments

Comments
 (0)