Removed double "install" statement (#12261)

This commit is contained in:
Tomasz Wrona 2020-11-23 22:36:01 +01:00 committed by GitHub
parent 6346ea0be6
commit 822d8eb535
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -30,7 +30,7 @@ install_clang() {
if ! command -v "${cc}"; then
case "${osversion}" in
linux-gnu-ubuntu*)
sudo apt-get install -qq -o=Dpkg::Use-Pty=0 install clang clang-format clang-tidy
sudo apt-get install -qq -o=Dpkg::Use-Pty=0 clang clang-format clang-tidy
;;
*) # Fallback for all platforms is to download from LLVM's site, but avoided until necessary
local target="./${url##*/}"