diff options
Diffstat (limited to '.github/scripts/install_deps.sh')
-rwxr-xr-x | .github/scripts/install_deps.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/scripts/install_deps.sh b/.github/scripts/install_deps.sh index bcc9789908..91c1d04081 100755 --- a/.github/scripts/install_deps.sh +++ b/.github/scripts/install_deps.sh @@ -12,7 +12,7 @@ done os=$(uname -s) if [[ $os == Linux ]]; then sudo apt-get update - sudo apt-get install -y attr build-essential cmake curl gettext libattr1-dev ninja-build unzip + sudo apt-get install -y build-essential cmake curl gettext ninja-build unzip if [[ $CC == clang ]]; then DEFAULT_CLANG_VERSION=$(echo | clang -dM -E - | grep __clang_major | awk '{print $3}') @@ -30,7 +30,7 @@ if [[ $os == Linux ]]; then fi if [[ -n $TEST ]]; then - sudo apt-get install -y locales-all cpanminus + sudo apt-get install -y locales-all cpanminus attr libattr1-dev fi elif [[ $os == Darwin ]]; then brew update --quiet |