8000 add git submodule update --init to esp8266 build · smartcoder00/arduinoWebSockets@b242882 · GitHub
[go: up one dir, main page]

Skip to content

Commit b242882

Browse files
committed
add git submodule update --init to esp8266 build
1 parent f8da05a commit b242882

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

travis/common.sh

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ function build_sketches()
2828
}
2929

3030
function build_sketch()
31-
{
31+
{
3232
local arduino=$1
3333
local sketch=$2
3434
$arduino --verify $sketch;
@@ -60,7 +60,7 @@ function get_sketches_json()
6060
if [[ $sketch != ${sketches[-1]} ]] ; then
6161
echo -en ","
6262
fi
63-
63+
6464
done
6565
echo -en "]"
6666
}
@@ -97,6 +97,7 @@ function get_core()
9797
cd esp8266com
9898
git clone --depth 1 https://github.com/esp8266/Arduino.git esp8266
9999
cd esp8266/
100+
git submodule update --init
100101
rm -rf .git
101102
cd tools
102103
python get.py
@@ -127,5 +128,5 @@ function clone_library() {
127128

128129
function hash_library_names() {
129130
cd $HOME/Arduino/libraries
130-
ls | sha1sum -z | cut -c1-5
131+
ls | sha1sum -z | cut -c1-5
131132
}

0 commit comments

Comments
 (0)
0