Skip to content

Commit

Permalink
Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
ilya-lavrenov committed Aug 14, 2022
1 parent 365e8e9 commit 6e4d66b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions install_build_dependencies.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ if [ -f /etc/lsb-release ]; then
# Ubuntu
host_cpu=$(uname -m)
if [ "$host_cpu" = "x86_64" ]; then
x86_64_specific_packages="gcc-multilib g++-multilib"
x86_64_specific_packages=(gcc-multilib g++-multilib)
else
x86_64_specific_packages=""
x86_64_specific_packages=()
fi

sudo -E apt update
Expand All @@ -40,7 +40,7 @@ if [ -f /etc/lsb-release ]; then
ca-certificates \
git \
git-lfs \
"$x86_64_specific_packages" \
"${x86_64_specific_packages[@]}" \
libgtk2.0-dev \
unzip \
shellcheck \
Expand Down

0 comments on commit 6e4d66b

Please sign in to comment.