You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
changed the title [-]Bad permissions on Arduino.app/Contents/Java/hardware/tools/avr/bin/avrdude_bin[/-][+]Version 1.6.6: Bad permissions on Arduino.app/Contents/Java/hardware/tools/avr/bin/avrdude_bin[/+]on Dec 7, 2015
I noticed that the same issue persists in Arduino IDE 1.6.7, released in December 2015. Same issue: avrdude_bin executable ships without the execute bits enabled under OS X at least:
avrdude_bin is shipped without executable bit to avoid Gatekeeper warning on Yosemite and newer OSX (#3468)
If you take a look at avrdude wrapper script (which gets called by the IDE) it takes care of adding the executable flag.
Activity
[-]Bad permissions on Arduino.app/Contents/Java/hardware/tools/avr/bin/avrdude_bin[/-][+]Version 1.6.6: Bad permissions on Arduino.app/Contents/Java/hardware/tools/avr/bin/avrdude_bin[/+]bertsierra commentedon Jan 4, 2016
I noticed that the same issue persists in Arduino IDE 1.6.7, released in December 2015. Same issue: avrdude_bin executable ships without the execute bits enabled under OS X at least:
Flags before:
-rw-r--r--@ 1 admin staff 369784 Apr 14 2015 avrdude_bin
Fix:
chmod 755 avrdude_bin ## in admin account
Flags after:
-rwxr-xr-x@ 1 admin staff 369784 Apr 14 2015 avrdude_bin
facchinm commentedon Jan 4, 2016
avrdude_bin
is shipped without executable bit to avoid Gatekeeper warning on Yosemite and newer OSX (#3468)If you take a look at
avrdude
wrapper script (which gets called by the IDE) it takes care of adding the executable flag.jhowe-sgs commentedon Jan 28, 2016
See #4501 for issues on a multi-user laptop deployment scenario.
Thanks