From 482e6162e51d7f3634252354099c0463c5a689b5 Mon Sep 17 00:00:00 2001 From: Andrew Simard <41052272+500Foods@users.noreply.github.com> Date: Fri, 17 May 2024 19:36:56 -0700 Subject: [PATCH] Update Build-Linux-x86.yml --- .github/workflows/Build-Linux-x86.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/Build-Linux-x86.yml b/.github/workflows/Build-Linux-x86.yml index 4963178..b6e2e78 100644 --- a/.github/workflows/Build-Linux-x86.yml +++ b/.github/workflows/Build-Linux-x86.yml @@ -27,14 +27,14 @@ jobs: - name: Install dependencies run: | - apt-get install -y build-essential libsqlite3-dev libxxhash-dev libjansson-dev libwebsockets-dev libfswatch libcurl4-openssl-dev libssl-dev + apt-get install -y build-essential libsqlite3-dev libxxhash-dev libjansson-dev libwebsockets-dev libfswatch-dev libcurl4-openssl-dev libssl-dev - name: Find fswatch library run: | - dpkg -s fswatch - dpkg -L fswatch - fswatch_lib=$(dpkg -L fswatch | grep 'libfswatch\.so' | head -n 1) - fswatch_inc=$(dpkg -L fswatch | grep 'cevent\.h' | head -n 1 | xargs dirname) + dpkg -s libfswatch + dpkg -L libfswatch + fswatch_lib=$(dpkg -L libfswatch | grep 'libfswatch\.so' | head -n 1) + fswatch_inc=$(dpkg -L libfswatch | grep 'cevent\.h' | head -n 1 | xargs dirname) echo "FSWATCH_LIB=-L$(dirname $fswatch_lib)" >> $GITHUB_ENV echo "FSWATCH_INC=-I$fswatch_inc" >> $GITHUB_ENV