Keep x bit set on libexec/

This commit is contained in:
0x1eef 2024-02-07 20:06:58 -03:00
parent 4998b4c38a
commit 17d644068d

View file

@ -45,6 +45,9 @@ class Copy < Builder
end end
sh "find #{dest} -type d -exec chmod u=rwx,g=rx,o=rx {} +" sh "find #{dest} -type d -exec chmod u=rwx,g=rx,o=rx {} +"
sh "find #{dest} -type f -exec chmod u=rw,g=r,o=r {} +" sh "find #{dest} -type f -exec chmod u=rw,g=r,o=r {} +"
if _1 == "twenty-cli"
sh "find #{dest}/libexec -type f -exec chmod u=rwx,g=rx,o=rx {} +"
end
end end
end end
end end