Re-order arguments to find(1) to silence warning about sub-optimal ordering.

This commit is contained in:
Chris Lamb 2009-01-01 21:34:35 +00:00 committed by Daniel Baumann
parent d8e5221399
commit b211776641
1 changed files with 1 additions and 1 deletions

View File

@ -173,7 +173,7 @@ Local_arguments ()
done
# Dump directory listings of all directories under config/
for DIRECTORY in $(find config/ -type d -mindepth 1 -maxdepth 1)
for DIRECTORY in $(find config/ -mindepth 1 -maxdepth 1 -type d)
do
if Find_files "${DIRECTORY}"
then