aboutsummaryrefslogtreecommitdiff
path: root/repos/outdated.sh
diff options
context:
space:
mode:
Diffstat (limited to 'repos/outdated.sh')
-rwxr-xr-xrepos/outdated.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/repos/outdated.sh b/repos/outdated.sh
index e316a1d9..d81ae2dc 100755
--- a/repos/outdated.sh
+++ b/repos/outdated.sh
@@ -3,10 +3,10 @@
while [ "$1" ]; do
#set -- ${1%/}
unset curver port
- [ -f $1/info ] && port=${1%/}
+ [ -f $1/abuild ] && port=${1%/}
[ "$port" ] || { shift; continue; }
pname=${1##*/}
- curver=$(grep ^version= $port/info | awk -F = '{print $2}')
+ curver=$(grep ^version= $port/abuild | awk -F = '{print $2}')
[ "$curver" ] || { shift; continue; }
case $pname in
python-*) pname=python:${pname#python-};;