summaryrefslogtreecommitdiffstats
path: root/genpkglist
diff options
context:
space:
mode:
authorJudd Vinet <judd@archlinux.org>2005-01-03 09:09:21 +0100
committerJudd Vinet <judd@archlinux.org>2005-01-03 09:09:21 +0100
commitf468dc2d2519a54667393c6b18b50ef17c4e27a5 (patch)
tree9a4ec7abf1bd86b5bd9a489023f301131a92f1fd /genpkglist
parente11622c10fa4b75d264c78c668282f5b21e6f158 (diff)
downloaddbscripts-f468dc2d2519a54667393c6b18b50ef17c4e27a5.tar.gz
dbscripts-f468dc2d2519a54667393c6b18b50ef17c4e27a5.tar.xz
re-arranged /bin/find options to get rid of an annoying warning message
Diffstat (limited to 'genpkglist')
-rwxr-xr-xgenpkglist4
1 files changed, 2 insertions, 2 deletions
diff --git a/genpkglist b/genpkglist
index ec50488..08111ce 100755
--- a/genpkglist
+++ b/genpkglist
@@ -1,5 +1,5 @@
#!/bin/bash
-# $Id: genpkglist,v 1.11 2004/07/03 20:28:11 judd Exp $
+# $Id: genpkglist,v 1.12 2005/01/03 08:09:21 judd Exp $
#
# genpkglist
@@ -12,7 +12,7 @@ pkgfile="`pwd`/packages.txt"
repodir=$1
rm -f $pkgfile
-for category in `find * -type d -maxdepth 0 | grep -v CVS`; do
+for category in `find * -maxdepth 0 -type d | grep -v CVS`; do
cd $category
for pkg in `/bin/ls`; do
cd $pkg