diff options
Diffstat (limited to 'libremakepkg')
-rwxr-xr-x | libremakepkg | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libremakepkg b/libremakepkg index 9a76f5f..3cbc844 100755 --- a/libremakepkg +++ b/libremakepkg @@ -67,6 +67,8 @@ fi msg "Checking PKGBUILD for non-free issues" pkgbuild-check-nonfree ||{ +# pkgbuild-check-nonfree uses 15 for nonfree and +# other errors if something failed. if [[ $? -eq 15 ]]; then error "PKGBUILD contains non-free issues" exit 15 @@ -75,7 +77,7 @@ pkgbuild-check-nonfree ||{ if [ $update_first = y ]; then msg "Updating the main chroot" - # -c option in mkarchroot indicates cache +# -c option in mkarchroot indicates cache mkarchroot -c ${CACHEDIR} -u "${CHROOTDIR}/${CHROOT}" fi |