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