mozilla-services / autograph

Mozilla's digital signature service
https://hub.docker.com/r/mozilla/autograph/
Mozilla Public License 2.0
152 stars 33 forks source link

remove executable bit from some source files #1039

Closed jmhodges closed 1 month ago

jmhodges commented 1 month ago

Unclear how these ended up as executable. Found some when Se Yeon was poking around and ran some find commands to find the rest.

The macos (BSD) find doesn't have -executable, so we use the weird perm flag.

$ find . -name "*.go"  -type f -perm '+111'  | xargs chmod -x
$ find . -name "*.yaml"  -type f -perm '+111'  | xargs chmod -x
$ find . -name "*.sql"  -type f -perm '+111'  | xargs chmod -x