File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
- #! /bin/bash
1
+ #! /bin/sh
2
2
3
3
# This file is part of WiFi101 Updater Arduino-IDE Plugin.
4
4
# Copyright 2016 Arduino LLC (http://www.arduino.cc/)
@@ -31,7 +31,7 @@ ZIP_FILENAME=WiFi101-Updater-ArduinoIDE-Plugin-$REV
31
31
REQUIRED_JARS=" pde.jar arduino-core.jar jssc-2.8.0-arduino3.jar bcpg-jdk15on-152.jar bcprov-jdk15on-152.jar commons-lang3-3.8.1.jar commons-codec-1.7.jar"
32
32
33
33
# Check existence of the IDE folder
34
- if [[ -z " $IDE_FOLDER " ] ]; then
34
+ if [ -z " $IDE_FOLDER " ]; then
35
35
echo " "
36
36
echo " Please set variable IDE_FOLDER to the path of the installed Arduino IDE"
37
37
echo " For example:"
@@ -48,7 +48,7 @@ for JAR in $REQUIRED_JARS; do
48
48
darwin* ) JARFILE=" $IDE_FOLDER /Java/$JAR " ;;
49
49
* ) JARFILE=" $IDE_FOLDER /lib/$JAR " ;;
50
50
esac
51
- if [[ -z " $JARFILE " ] ]; then
51
+ if [ -z " $JARFILE " ]; then
52
52
echo " Could not find $JARFILE library in you IDE folder."
53
53
exit 1
54
54
fi
You can’t perform that action at this time.
0 commit comments