diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2009-10-23 16:53:13 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2009-10-23 16:53:13 +0000 |
commit | 46aed95754ebeb17a3a367b3b41d0b6424fd18d9 (patch) | |
tree | 16f0e3486508e5f8e5d0a47bbd8aafa0c77de2c9 | |
parent | 3b7ab34e67ed1484ecf825e53715fa4070d2754f (diff) | |
download | abuild-46aed95754ebeb17a3a367b3b41d0b6424fd18d9.tar.bz2 abuild-46aed95754ebeb17a3a367b3b41d0b6424fd18d9.tar.xz |
abuild: minor cleanup
-rwxr-xr-x | buildrepo.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/buildrepo.in b/buildrepo.in index c211789..d719c34 100755 --- a/buildrepo.in +++ b/buildrepo.in @@ -22,9 +22,9 @@ usage() { listpackages() { - cd "$aportsdir/$1" for i in */APKBUILD; do - APKBUILD=$i abuild listpkg + cd "$aportsdir"/$1/${i%/*} + abuild listpkg done } |