Skip to content
This repository was archived by the owner on Apr 17, 2023. It is now read-only.

Commit 268131f

Browse files
committed
Silenced 'unzip', modified unzipping logic for OS X builds.
1 parent 5a68d68 commit 268131f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.travis.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,8 @@ before_install:
3535
if [[ $TRAVIS_OS_NAME == linux ]]; then
3636
tar -xf "$sdk_file" -C arduino-sdk
3737
else
38-
unzip "$sdk_file" 'Arduino.app/*' -d arduino-sdk
38+
unzip -q "$sdk_file"
39+
mv Arduino.app/* arduino-sdk/arduino-$ARDUINO_SDK_VERSION/*
3940
fi
4041
fi
4142
- export ARDUINO_SDK_PATH="$sdk_path"

0 commit comments

Comments
 (0)