mariocasciaro / object-path

A tiny JavaScript utility to access deep properties using a path (for Node and the Browser)
MIT License
1.06k stars 84 forks source link

Remove executable bit from plain text files #75

Closed Daniel15 closed 8 years ago

Daniel15 commented 8 years ago

Removes the executable bit (chmod a-x) from the license and readme, as it doesn't make sense for plain text files to be marked as executable.

Right now, this causes lint warnings when building a Debian package for a project that pulls in object-path as a dependency, as it thinks the file is an executable:

W: yarn: non-standard-executable-perm usr/share/yarn/node_modules/object-path/LICENSE 0744 != 0755
coveralls commented 8 years ago

Coverage Status

Coverage remained the same at 99.424% when pulling 60e866170bc7fa5b51116c0b2a9914978b0ce90a on Daniel15:noexec into f01ab7ce2c9ca09cf3e7ad39ca9f38a7f9cf9dc2 on mariocasciaro:master.

mariocasciaro commented 8 years ago

Makes sense, thanks!