Fix for not-tar'ing-stage-4 after unpack.

Not wanting to tar it up should not cause the whole build to abort.
This commit is contained in:
Johny Mattsson 2017-10-02 12:26:02 +11:00 committed by parazyd
parent edf6dacf55
commit 1fdbd917d8
No known key found for this signature in database
GPG Key ID: F0CB28FCF78637DE
1 changed files with 1 additions and 1 deletions

View File

@ -214,5 +214,5 @@ EOF
print "$i" | sudo tee -a $strapdir/etc/modules >/dev/null print "$i" | sudo tee -a $strapdir/etc/modules >/dev/null
done || true done || true
[[ -n "$TAR_STAGE4" ]] && bootstrap_tar_pack "$bootstrap_tgz_stage4" [[ -n "$TAR_STAGE4" ]] && bootstrap_tar_pack "$bootstrap_tgz_stage4" || true
} }