diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2009-10-27 15:24:18 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2009-10-27 15:24:18 +0000 |
commit | 19b2598f8a52ba8af07eb4904788d0843130b094 (patch) | |
tree | 9f309bd38a73fc9fa2db120c7a090bd951936cf9 /buildrepo.in | |
parent | 025114800978669babc6294bb43c84f263440883 (diff) | |
download | abuild-19b2598f8a52ba8af07eb4904788d0843130b094.tar.gz abuild-19b2598f8a52ba8af07eb4904788d0843130b094.tar.bz2 abuild-19b2598f8a52ba8af07eb4904788d0843130b094.tar.xz abuild-19b2598f8a52ba8af07eb4904788d0843130b094.zip |
Revert "abuild: minor cleanup"
This commit seems to kill the entire repository
This reverts commit 46aed95754ebeb17a3a367b3b41d0b6424fd18d9.
Diffstat (limited to 'buildrepo.in')
-rwxr-xr-x | buildrepo.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/buildrepo.in b/buildrepo.in index d719c34..c211789 100755 --- a/buildrepo.in +++ b/buildrepo.in @@ -22,9 +22,9 @@ usage() { listpackages() { + cd "$aportsdir/$1" for i in */APKBUILD; do - cd "$aportsdir"/$1/${i%/*} - abuild listpkg + APKBUILD=$i abuild listpkg done } |