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 1d9eea5 commit 90e30ddCopy full SHA for 90e30dd
modules/battery-monitor.sh
@@ -6,7 +6,17 @@ function installBatteryMonitor() {
6
7
isInstalled unzip
8
if [ "$INSTALLED" == "$INSTALLED_NO" ]; then
9
- apt-get install unzip
+ if [ "$PLATFORM" == "$EV3" ]; then
10
+
11
+ mkdir -p packages
12
+ cd packages
13
+ wget http://ftp.us.debian.org/debian/pool/main/u/unzip/unzip_6.0-16+deb8u3_armel.deb
14
+ sudo dpkg -i unzip_6.0-16+deb8u3_armel.deb
15
+ cd ..
16
+ else
17
+ apt-get install unzip
18
+ fi
19
20
fi
21
22
unzip batteryMonitor-0.2.0-SNAPSHOT.zip
0 commit comments