diff options
Diffstat (limited to 'src')
-rwxr-xr-x | src/abslibre-tools/librestage | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/abslibre-tools/librestage b/src/abslibre-tools/librestage index 16dc772..6eba8dd 100755 --- a/src/abslibre-tools/librestage +++ b/src/abslibre-tools/librestage @@ -60,6 +60,7 @@ main() { # Load configuration load_files libretools check_vars libretools WORKDIR ARCHES || return 1 + load_files makepkg # for PKGDEST, which is optional # Load the PKGBUILD source ./PKGBUILD @@ -69,7 +70,7 @@ main() { for CARCH in "${ARCHES[@]}" any; do for _pkgname in "${pkgname[@]}"; do pkgfile=${_pkgname}-$(get_full_version $_pkgname)-${CARCH}${PKGEXT} - pkgpath="$(find . "$PKGDEST" -maxdepth 1 -type f -name "$pkgfile"|sed 1q)" + pkgpath="$(find . "${PKGDEST:-.}" -maxdepth 1 -type f -name "$pkgfile"|sed 1q)" if [[ ! -f "${pkgpath}" ]]; then continue |