summaryrefslogtreecommitdiffstats
path: root/scripts/makepkg.sh.in
diff options
context:
space:
mode:
authorAndrew Gregory <andrew.gregory.8@gmail.com>2016-11-05 23:08:16 +0100
committerAllan McRae <allan@archlinux.org>2016-12-05 06:20:08 +0100
commit5dd764eb47e0109407702a4064e74dc25df3c982 (patch)
tree8564db1bd3c29c09426db39bd0d7e73a2de2184a /scripts/makepkg.sh.in
parent46101bea1c1232621fa80409586b5eeeaefdac47 (diff)
downloadpacman-5dd764eb47e0109407702a4064e74dc25df3c982.tar.gz
pacman-5dd764eb47e0109407702a4064e74dc25df3c982.tar.xz
makepkg: abort on lint_package errors
Allows lint_package to prevent makepkg from creating an invalid package. Signed-off-by: Andrew Gregory <andrew.gregory.8@gmail.com> Signed-off-by: Allan McRae <allan@archlinux.org>
Diffstat (limited to 'scripts/makepkg.sh.in')
-rw-r--r--scripts/makepkg.sh.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/makepkg.sh.in b/scripts/makepkg.sh.in
index ca494353..20004516 100644
--- a/scripts/makepkg.sh.in
+++ b/scripts/makepkg.sh.in
@@ -1167,7 +1167,7 @@ run_split_packaging() {
backup_package_variables
run_package $pkgname
tidy_install
- lint_package
+ lint_package || exit 1
create_package
create_debug_package
restore_package_variables
@@ -1605,7 +1605,7 @@ if (( INFAKEROOT )); then
run_package
fi
tidy_install
- lint_package
+ lint_package || exit 1
create_package
create_debug_package
else