Skip to content

Remove unnecessary executable permissions

Jeremy Bicha requested to merge jbicha/gimp-help:remove-exec-perms into master

Run this command to remove executable permissions except for autogen.sh and the tools/ directory

find \( -name tools -o -name autogen.sh \) -prune -o -type f -exec chmod -x '{}' ';'

Merge request reports