Align find options

This commit is contained in:
0x1eef 2024-07-24 14:31:55 -03:00
parent ed588bd7d7
commit 2d6ec73e73

View file

@ -45,13 +45,13 @@ perform_update()
perform_install() perform_install()
{ {
find -s . \ find -s . \
-maxdepth 1 \ -maxdepth 1 \
! -name "." \ ! -name "." \
! -name ".git" \ ! -name ".git" \
! -name ".gitignore" \ ! -name ".gitignore" \
! -name ".hooks" \ ! -name ".hooks" \
! -name ".arcconfig" \ ! -name ".arcconfig" \
-exec cp -Rpv {} "${installdir}" \; -exec cp -Rpv {} "${installdir}" \;
chown -Rv root "${installdir}" chown -Rv root "${installdir}"
} }