diff options
Diffstat (limited to 'src/chroot-tools/libremakepkg')
-rwxr-xr-x | src/chroot-tools/libremakepkg | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/chroot-tools/libremakepkg b/src/chroot-tools/libremakepkg index b86506a..cd81876 100755 --- a/src/chroot-tools/libremakepkg +++ b/src/chroot-tools/libremakepkg @@ -22,7 +22,6 @@ . $(librelib conf.sh) load_files chroot -[[ -f /.arch-chroot ]] || check_vars chroot CHROOTDIR CHROOT . libremessages makechrootpkg=$(librelib makechrootpkg) @@ -257,10 +256,13 @@ main() { if $INCHROOT; then copydir='/' - elif [[ ${COPY:0:1} = / ]]; then - copydir=$COPY else - copydir="${CHROOTDIR}/${CHROOT}/${COPY}" + check_vars chroot CHROOTDIR CHROOT + if [[ ${COPY:0:1} = / ]]; then + copydir=$COPY + else + copydir="${CHROOTDIR}/${CHROOT}/${COPY}" + fi fi # Init ################################################################# |