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 c457380 commit 4fd2a22Copy full SHA for 4fd2a22
install.sh
@@ -15,7 +15,7 @@ if ! which apt-get apt-key > /dev/null; then
15
fi
16
17
# You probably have these
18
-PREREQ_PACKAGES="curl apt-transport-https lsb-release"
+PREREQ_PACKAGES="curl apt-transport-https"
19
PREREQ_PACKAGES_TO_INSTALL=
20
for package in $PREREQ_PACKAGES; do
21
if ! dpkg-query --show --showformat='${db:Status-Status}\n' "$package" 2> /dev/null | grep -q '^installed$'; then
@@ -28,7 +28,8 @@ if [ "$PREREQ_PACKAGES_TO_INSTALL" ]; then
28
sudo apt-get -y install $PREREQ_PACKAGES_TO_INSTALL
29
30
31
-if uname -a | grep -Eivq 'armv7|armv6'; then
+# By popular demand, do softer checking for other OS versions
32
+if uname -a | fgrep -ivq arm; then
33
run_on_pi_only
34
35
0 commit comments