Re-order arguments to find(1) to silence warning about sub-optimal ordering.
This commit is contained in:
parent
d8e5221399
commit
b211776641
|
@ -173,7 +173,7 @@ Local_arguments ()
|
||||||
done
|
done
|
||||||
|
|
||||||
# Dump directory listings of all directories under config/
|
# 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
|
do
|
||||||
if Find_files "${DIRECTORY}"
|
if Find_files "${DIRECTORY}"
|
||||||
then
|
then
|
||||||
|
|
Loading…
Reference in New Issue