Skip to content

Commit 6099256

Browse files
committed
Fix launching Arduino on OSX without splash screen
1 parent fa7b976 commit 6099256

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
1616
- Display Manager became no longer necessary with Arduino 1.8.X
1717

1818
### Fixed
19+
- OSX splash screen re-disabled
1920

2021
### Security
2122

lib/arduino_ci/arduino_installation.rb

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,9 @@ def autolocate_osx
5151
# from https://github.com/arduino/Arduino/issues/1970#issuecomment-321975809
5252
[
5353
"java",
54-
"-cp", "#{osx_root}/Java/*",
55-
"-DAPP_DIR=#{osx_root}/Java",
54+
"-cp",
55+
"#{osx_root}/Contents/Java/*",
56+
"-DAPP_DIR=#{osx_root}/Contents/Java",
5657
"-Dfile.encoding=UTF-8",
5758
"-Dapple.awt.UIElement=true",
5859
"-Xms128M",

0 commit comments

Comments
 (0)