From 1fdbd917d8f92333f826491b6cecef078a0f5167 Mon Sep 17 00:00:00 2001 From: Johny Mattsson Date: Mon, 2 Oct 2017 12:26:02 +1100 Subject: [PATCH] Fix for not-tar'ing-stage-4 after unpack. Not wanting to tar it up should not cause the whole build to abort. --- zlibs/bootstrap | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zlibs/bootstrap b/zlibs/bootstrap index b8b30ea..d289462 100644 --- a/zlibs/bootstrap +++ b/zlibs/bootstrap @@ -214,5 +214,5 @@ EOF print "$i" | sudo tee -a $strapdir/etc/modules >/dev/null done || true - [[ -n "$TAR_STAGE4" ]] && bootstrap_tar_pack "$bootstrap_tgz_stage4" + [[ -n "$TAR_STAGE4" ]] && bootstrap_tar_pack "$bootstrap_tgz_stage4" || true }