index : devtools32 | |
Archlinux32 fork of devtools | gitolite user |
summaryrefslogtreecommitdiff |
author | Eli Schwartz <eschwartz@archlinux.org> | 2019-09-12 10:20:19 -0400 |
---|---|---|
committer | Levente Polyak <anthraxx@archlinux.org> | 2019-09-12 21:29:42 +0200 |
commit | 6e466ca654c9d15e40ae371dbb013170fbdfdb91 (patch) | |
tree | cad73efa80c1340b854c1674470d630a2eb7e66e | |
parent | d8d2e23247a1aab5e269ff0e388e378ec9d462eb (diff) |
-rw-r--r-- | makechrootpkg.in | 9 |
diff --git a/makechrootpkg.in b/makechrootpkg.in index ce47b93..2407115 100644 --- a/makechrootpkg.in +++ b/makechrootpkg.in @@ -232,15 +232,8 @@ _chrootbuild() { sudo --preserve-env=SOURCE_DATE_EPOCH -iu builduser bash -c 'cd /startdir; makepkg "$@"' -bash "$@" ret=$? case $ret in - 0) + 0|14) return 0;; - 14) - # whitelist "The package failed to install." but only if there are multiple split packages - # in which case they might be conflicting - local pkgfiles=(/pkgdest/*.pkg.tar.xz) - (( ${#pkgfiles[@]} > 1)) - return $?;; - *) return $ret;; esac |