diff options
Diffstat (limited to 'libremakepkg')
-rwxr-xr-x | libremakepkg | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libremakepkg b/libremakepkg index 13e7617..f9f7316 100755 --- a/libremakepkg +++ b/libremakepkg @@ -158,16 +158,16 @@ buildenv msg "Creating the package" if [ -d "${CHROOTDIR}/${CHROOTNAME}" ]; then # use chroot - if [ "${UPDATE_FIRST}" = 'y' ]; then - msg "Updating the chroot in use..." - mkarchroot -c ${CACHEDIR} -u "${CHROOTDIR}/${CHROOTNAME}" # -c option is for cache - fi - if [ "${CLEAN_FIRST}" = 'y' ]; then msg "Cleaning" clean_chroot fi + if [ "${UPDATE_FIRST}" = 'y' ]; then + msg "Updating the chroot in use..." + mkarchroot -c ${CACHEDIR} -u "${CHROOTDIR}/${CHROOTNAME}" # -c option is for cache + fi + makechrootpkg -r "${CHROOTDIR}" -l "${CHROOTNAME}" -- "${MAKEPKG_ARGS}" ev=$? # exit value |