From 2d6ec73e73c710c691e4495898bf8e12e766a7a4 Mon Sep 17 00:00:00 2001 From: 0x1eef <0x1eef@protonmail.com> Date: Wed, 24 Jul 2024 14:31:55 -0300 Subject: [PATCH] Align find options --- libexec/portzap/commands/portzap-install | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/libexec/portzap/commands/portzap-install b/libexec/portzap/commands/portzap-install index 008cbf9..d4e796d 100755 --- a/libexec/portzap/commands/portzap-install +++ b/libexec/portzap/commands/portzap-install @@ -45,13 +45,13 @@ perform_update() perform_install() { find -s . \ - -maxdepth 1 \ - ! -name "." \ - ! -name ".git" \ - ! -name ".gitignore" \ - ! -name ".hooks" \ - ! -name ".arcconfig" \ - -exec cp -Rpv {} "${installdir}" \; + -maxdepth 1 \ + ! -name "." \ + ! -name ".git" \ + ! -name ".gitignore" \ + ! -name ".hooks" \ + ! -name ".arcconfig" \ + -exec cp -Rpv {} "${installdir}" \; chown -Rv root "${installdir}" }