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
|
# Install files
|
||||||
find $dir -maxdepth 1 -type f \
|
find $dir -maxdepth 1 -type f \
|
||||||
\( -not -name ".gitignore" \) \
|
\( -not -name ".gitignore" \) \
|
||||||
\( -not -name ".arcconfig" \) \
|
\( -not -name ".arcconfig" \) \
|
||||||
-exec $libexec_dir/install-file $dest/$dir {} +
|
-exec $libexec_dir/install-file $dest/$dir {} +
|
||||||
|
|
||||||
# Install subdirs (recursive)
|
# Install subdirs (recursive)
|
||||||
find -s $dir -depth 1 -type d \
|
find -s $dir -depth 1 -type d \
|
||||||
\( -not -name ".git" \) \
|
\( -not -name ".git" \) \
|
||||||
\( -not -name ".hooks" \) \
|
\( -not -name ".hooks" \) \
|
||||||
-exec $libexec_dir/install-directory $dest $libexec_dir {} \;
|
-exec $libexec_dir/install-directory $dest $libexec_dir {} \;
|
||||||
done
|
done
|
||||||
|
|
Loading…
Reference in a new issue