diff options
author | Nicolás Reynolds <fauno@kiwwwi.com.ar> | 2011-03-22 09:22:18 -0300 |
---|---|---|
committer | Nicolás Reynolds <fauno@kiwwwi.com.ar> | 2011-03-22 09:22:18 -0300 |
commit | 5f47cf2a8f096f284bb1a9278fa676960ae65847 (patch) | |
tree | 6120973356c8d970fb6c07c5bc67cb4e0eb55da2 /fullpkg | |
parent | f98753091219274bc92cf8a90b7786e288d8219f (diff) |
FullPkg fails on previously failed packages againv20110325
Diffstat (limited to 'fullpkg')
-rwxr-xr-x | fullpkg | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -125,7 +125,7 @@ for _dep in ${deps[@]}; do pushd $tmp_dir/$_dep >/dev/null $0 - [[ $? -eq 1 ]] && { + [[ $? -ne 0 ]] && { failed=(${failed[@]} $_dep) } @@ -147,6 +147,7 @@ done #[[ ${#failed[@]} -gt 0 ]] || [[ ${#missing[@]} -gt 0 ]] && { [[ ${#failed[@]} -gt 0 ]] && { echo ":: This packages failed to build: ${failed[@]}" + exit 1 } # [[ ${#missing[@]} -gt 0 ]] && { |