aboutsummaryrefslogtreecommitdiff
path: root/repos/outdated.sh
diff options
context:
space:
mode:
authoremmett1 <emmett1.2miligrams@protonmail.com>2024-06-17 22:50:16 +0800
committeremmett1 <emmett1.2miligrams@protonmail.com>2024-06-17 22:50:16 +0800
commit8d5f3549f7c2826ff4e35b31f6ce55179ebc70e9 (patch)
tree778925c58e70b035e9cfe9a12e345d1ddd3dbb61 /repos/outdated.sh
parente7a05bccb4e979eb70b15defa583ef81cabed9e0 (diff)
downloadalicelinux-8d5f3549f7c2826ff4e35b31f6ce55179ebc70e9.tar.gz
alicelinux-8d5f3549f7c2826ff4e35b31f6ce55179ebc70e9.zip
updates
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-};;