We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9de9828 commit e708e75Copy full SHA for e708e75
debian/scripts/install-arduino-stuff.sh
@@ -2,8 +2,12 @@
2
3
set -xe
4
5
+wget -N http://downloads.arduino.cc/keys/arduino.asc
6
+
7
+adb push ./arduino.asc /etc/apt/keyrings/
8
+adb shell chmod 644 /etc/apt/keyrings/arduino.asc
9
adb shell sh -c 'cat > /etc/apt/sources.list.d/arduino.list' <<EOF
-deb [trusted=yes] https://apt-repo.arduino.cc stable main
10
+deb [signed-by=/etc/apt/keyrings/arduino.asc] https://apt-repo.arduino.cc stable main
11
EOF
12
13
adb shell sh -c 'cat > /etc/apt/auth.conf.d/arduino.conf' <<EOF
0 commit comments