mirror of
https://github.com/guanzhi/GmSSL.git
synced 2026-09-25 23:04:10 +08:00
12 lines
337 B
Bash
12 lines
337 B
Bash
#!/bin/bash
|
|
#
|
|
# Install clang-format on Linux
|
|
#
|
|
|
|
if [ ! -x "$(which clang-format-3.9)" ]; then
|
|
sudo add-apt-repository 'deb http://apt.llvm.org/trusty/ llvm-toolchain-trusty-3.9 main'
|
|
wget -O - http://llvm.org/apt/llvm-snapshot.gpg.key | sudo apt-key add -
|
|
sudo apt-get update -qq
|
|
sudo apt-get install -qq -y clang-format-3.9
|
|
fi;
|