Skip to content

Commit 2698061

Browse files
committed
fix install/uninstall
1 parent 8041e56 commit 2698061

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

install.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,15 @@ if [ $os == "Linux" ]; then
2020
# FOR NOW, CODE GOES HERE since we're shooting for RPi support
2121
#
2222
# ####
23-
23+
echo "armv7l"
2424

2525

2626
else
2727
# Non-arm7 Debian...
28+
echo "non armv7l"
2829
fi
2930

3031
elif [ $os == "Darwin" ]; then
3132
# OSX
33+
echo "osx"
3234
fi

uninstall.sh

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,21 +12,23 @@ if [ $os == "Linux" ]; then
1212

1313
# on Debian Linux distributions
1414

15-
# on RaspberryPi
1615
if [ $arq == "armv7l" ]; then
16+
# on RaspberryPi
1717

1818
# ####
1919
#
2020
# FOR NOW, CODE GOES HERE since we're shooting for RPi support
2121
#
2222
# ####
23-
23+
echo "armv7l"
2424

2525

2626
else
2727
# Non-arm7 Debian...
28+
echo "non armv7l"
2829
fi
2930

3031
elif [ $os == "Darwin" ]; then
3132
# OSX
33+
echo "osx"
3234
fi

0 commit comments

Comments
 (0)