libretro / bnes-libretro

libretro implementation of bNES
GNU General Public License v3.0
11 stars 12 forks source link

Fix permissions. #17

Closed orbea closed 7 years ago

orbea commented 7 years ago

This repo is full of files with unneeded executive permissions (755), so this will change them to 644.

This was achieved with the following command.

find . -not -path '*/\.*' -type f -perm 755 -exec chmod 0644 {} \;