Fix alignment of find command
This commit is contained in:
parent
ace1ebb463
commit
0508508b2e
1 changed files with 6 additions and 6 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue