libretro / beetle-ngp-libretro

Standalone port of Mednafen NGP to the libretro API, itself a fork of Neopop.
GNU General Public License v2.0
11 stars 43 forks source link

Fix permissions. #26

Closed orbea closed 7 years ago

orbea commented 7 years ago

Some files have unneeded executable permissions (755), this changes them to 644 with the following command.

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