portage-exclude moved

--HG--
rename : bash/portage-exclude/portage-exclude.sh => bash/portage-exclude-gen/portage-exclude-gen.sh
This commit is contained in:
Kolan Sh 2011-07-06 17:58:36 +04:00
parent 7f83d32500
commit 4a97a942ae
1 changed files with 1 additions and 2 deletions

View File

@ -1,7 +1,7 @@
#!/bin/bash #!/bin/bash
cd /usr/portage/ || exit -1 cd /usr/portage/ || exit -1
for d in *-*; do for d in *-* virtual; do
if [[ `qlist -IC $d/ | wc -l` == 0 ]]; then if [[ `qlist -IC $d/ | wc -l` == 0 ]]; then
echo $d/ echo $d/
else else
@ -12,4 +12,3 @@ for d in *-*; do
done done
fi fi
done done