diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2010-11-02 09:39:34 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2010-11-02 09:39:34 +0000 |
commit | c5b9e2c6dc4ca41aabc96970599c52f8a3a13997 (patch) | |
tree | c6e7e506bdfd3812218bf918e01170cf5b30d6d7 /buildrepo.in | |
parent | 5cde86ff2925c102d1655550c156f1619deca6e8 (diff) | |
download | abuild-c5b9e2c6dc4ca41aabc96970599c52f8a3a13997.tar.gz abuild-c5b9e2c6dc4ca41aabc96970599c52f8a3a13997.tar.bz2 abuild-c5b9e2c6dc4ca41aabc96970599c52f8a3a13997.tar.xz abuild-c5b9e2c6dc4ca41aabc96970599c52f8a3a13997.zip |
buildrepo: fix previous commit
Diffstat (limited to 'buildrepo.in')
-rwxr-xr-x | buildrepo.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/buildrepo.in b/buildrepo.in index 961d245..0fb7c12 100755 --- a/buildrepo.in +++ b/buildrepo.in @@ -45,7 +45,7 @@ build() { # to rebuild. By doing this we might save us for rebuilding # needed when running 'abuild -R' for i in */APKBUILD; do - [ -f "$i" ] || continue + [ -f "$aportsdir/$repo/$i" ] || continue export REPODEST="$repodir" cd "$aportsdir/$repo"/${i%/*} || return 1 if abuild -k -q up2date 2>/dev/null; then |