diff options
author | Marcelo Leitner <mrl@mandriva.com> | 2007-06-20 14:50:03 +0000 |
---|---|---|
committer | Marcelo Leitner <mrl@mandriva.com> | 2007-06-20 14:50:03 +0000 |
commit | eccbba7d573dd3bcff6cbedb221f2cfa93a048f5 (patch) | |
tree | d37553fac874e3293f83635075582f079fe9f04f | |
parent | 6141ed458a08389136e0a89878bb33b96e5ca6f4 (diff) | |
download | iurt-eccbba7d573dd3bcff6cbedb221f2cfa93a048f5.tar iurt-eccbba7d573dd3bcff6cbedb221f2cfa93a048f5.tar.gz iurt-eccbba7d573dd3bcff6cbedb221f2cfa93a048f5.tar.bz2 iurt-eccbba7d573dd3bcff6cbedb221f2cfa93a048f5.tar.xz iurt-eccbba7d573dd3bcff6cbedb221f2cfa93a048f5.zip |
- Escape the wildcard.
-rwxr-xr-x | iurt_cache_cleaner.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/iurt_cache_cleaner.sh b/iurt_cache_cleaner.sh index b648d34..68c0516 100755 --- a/iurt_cache_cleaner.sh +++ b/iurt_cache_cleaner.sh @@ -85,7 +85,7 @@ _EOF_ # ls "$TOPDIR" |\ while read distro; do - find -L "$TOPDIR/$distro" -type f -name *.src.rpm |\ + find -L "$TOPDIR/$distro" -type f -name '*.src.rpm' |\ sed "s@$TOPDIR/$distro/@@;s@/\([^/]\+\)\$@ \1@" |\ while read section srpm; do echo |