Skip to content

Changes various (text) files to *not* be executable#98

Merged
jwerle merged 1 commit intobpkg:masterfrom
potherca-contrib:cleanup/make-text-files-non-executable
Feb 2, 2018
Merged

Changes various (text) files to *not* be executable#98
jwerle merged 1 commit intobpkg:masterfrom
potherca-contrib:cleanup/make-text-files-non-executable

Conversation

@Potherca
Copy link
Member

As part of #77 various text files were (accidentally?) made executable.

This PR sets the permission for those file to their original non-executable state.


The full list was easy to find:

$ find ./ -type f -exec ls -l {} \; | grep -- -rwxr-xr-x | grep -v -E *.sh  | cut -d / -f 2-
LICENSE
README.md
package.json
lib/suggest/LICENSE
lib/suggest/README.md
lib/suggest/Makefile
lib/suggest/package.json
lib/term/LICENSE
lib/term/README.md
lib/term/Makefile
lib/term/package.json
lib/json/README.md
lib/init/LICENSE.md
lib/init/README.md
lib/init/Makefile
lib/init/package.json

Removing the executable flag was then simply a matter adding | xargs chmod a-x to the aforementioned command.

This change affects LICENSE, README.md, package.json and Makefile files.
@jwerle jwerle merged commit 1107d76 into bpkg:master Feb 2, 2018
@Potherca Potherca added this to the Release v0.3.0 milestone Jan 1, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Development

Successfully merging this pull request may close these issues.

2 participants