Skip to content

Commit

Permalink
Linter fix
Browse files Browse the repository at this point in the history
  • Loading branch information
steelhead31 authored Nov 30, 2023
1 parent 234d491 commit eadc580
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build-farm/platform-specific-configurations/linux.sh
Original file line number Diff line number Diff line change
Expand Up @@ -201,9 +201,9 @@ fi
if [ -e /etc/os-release ]; then
ID=$(grep "^ID=" /etc/os-release | awk -F'=' '{print $2}')
INT_VERSION_ID=$(grep "^VERSION_ID=" /etc/os-release | awk -F'"' '{print $2}' | awk -F'.' '{print $1}')
LIB_ARCH=$(uname -m)
LIB_ARCH=$(uname -m)-linux-gnu
if [ "$ID" == "ubuntu" ] && [ "$INT_VERSION_ID" -ge "22" ]; then
export LIBRARY_PATH=/usr/lib/$(uname -m)-linux-gnu:$LIBRARY_PATH
export LIBRARY_PATH=/usr/lib/$LIB_ARCH:$LIBRARY_PATH
fi
fi

Expand Down

0 comments on commit eadc580

Please sign in to comment.