spine-generic / data-multi-subject

Multi-subject data for the Spine Generic project
Creative Commons Attribution 4.0 International
21 stars 15 forks source link

Fix file permissions #139

Closed mguaypaq closed 1 year ago

mguaypaq commented 1 year ago

Various data files were incorrectly marked as executable. To correct this, I ran:

$ find derivatives/ -type f -perm /+x -exec chmod -x {} +
$ git commit -a

Afterwards, I checked that all files and directories have uniform permissions:

$ find . -name .git -prune -o -name .github -prune -o -exec stat -c %A {} + | sort -u
drwxr-xr-x
-rw-r--r--

Since I did this in parallel with #138, I'm sure there will be merge conflicts, so I'll mark this as a draft for now.