Skip to content

Commit 5f1cdbb

Browse files
authored
Merge pull request #37 from dhalbert/signing.py-execute
stop trying to fix esp8266 2.5.0-beta1 permission problem
2 parents e5d9f88 + c6ff350 commit 5f1cdbb

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

Diff for: install.sh

+1-2
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,6 @@ if [ $? -ne 0 ]; then echo -e "\xe2\x9c\x96 OR CACHED"; else echo -e """$GREEN""
9898
echo -n "ESP8266: "
9999
DEPENDENCY_OUTPUT=$(arduino --install-boards esp8266:esp8266 2>&1)
100100
if [ $? -ne 0 ]; then echo -e "\xe2\x9c\x96 OR CACHED"; else echo -e """$GREEN""\xe2\x9c\x93"; fi
101-
chmod +x /home/travis/.arduino15/packages/esp8266/hardware/esp8266/2.5.0-beta1/tools/signing.py
102101

103102
echo -n "ADAFRUIT AVR: "
104103
DEPENDENCY_OUTPUT=$(arduino --install-boards adafruit:avr 2>&1)
@@ -308,7 +307,7 @@ function build_platform()
308307
# we have to avoid reading the exit code of local:
309308
# "when declaring a local variable in a function, the local acts as a command in its own right"
310309
local build_stdout
311-
build_stdout=$(arduino --verify $example 2>&1)
310+
build_stdout=$(arduino --verbose --verify $example 2>&1)
312311

313312
# echo output if the build failed
314313
if [ $? -ne 0 ]; then

0 commit comments

Comments
 (0)