From 0508508b2ec9499a42d9091fcd9a302adac4cda0 Mon Sep 17 00:00:00 2001 From: 0x1eef <0x1eef@protonmail.com> Date: Sun, 22 Jan 2023 19:37:37 -0300 Subject: [PATCH] Fix alignment of find command --- libexec/portzap/install-directory | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/libexec/portzap/install-directory b/libexec/portzap/install-directory index 7c88312..6e3427d 100755 --- a/libexec/portzap/install-directory +++ b/libexec/portzap/install-directory @@ -10,13 +10,13 @@ for i in $(seq 3 $#); do # Install files find $dir -maxdepth 1 -type f \ - \( -not -name ".gitignore" \) \ - \( -not -name ".arcconfig" \) \ - -exec $libexec_dir/install-file $dest/$dir {} + + \( -not -name ".gitignore" \) \ + \( -not -name ".arcconfig" \) \ + -exec $libexec_dir/install-file $dest/$dir {} + # Install subdirs (recursive) find -s $dir -depth 1 -type d \ - \( -not -name ".git" \) \ - \( -not -name ".hooks" \) \ - -exec $libexec_dir/install-directory $dest $libexec_dir {} \; + \( -not -name ".git" \) \ + \( -not -name ".hooks" \) \ + -exec $libexec_dir/install-directory $dest $libexec_dir {} \; done