We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 948602c commit 78d622bCopy full SHA for 78d622b
actions_install.sh
@@ -6,7 +6,9 @@ pip3 install clint pyserial setuptools adafruit-nrfutil
6
sudo apt-get update
7
sudo apt-get install -y --allow-downgrades libllvm8=1:8-3~ubuntu18.04.2 -V
8
sudo apt install -fy cppcheck clang-format-8
9
-sudo ln -s /usr/bin/clang-format-8 /usr/bin/clang-format
+if [ ! -f /usr/bin/clang-format ]; then
10
+ sudo ln -s /usr/bin/clang-format-8 /usr/bin/clang-format
11
+fi
12
13
# make all our directories we need for files and libraries
14
mkdir ${HOME}/.arduino15
0 commit comments