commit d4c0960f3e8a61a99200ac92b7296e186da760f2
parent 1b1e557010039b970e7af598d3498e40a6ec855a
Author: parazyd <parazyd@dyne.org>
Date: Wed, 27 Sep 2017 16:57:20 +0200
return true with bootstrap for loops
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/zlibs/bootstrap b/zlibs/bootstrap
@@ -207,12 +207,12 @@ EOF
for i in $inittab; do
grep -q "^$i" $strapdir/etc/inittab && continue
print "$i" | sudo tee -a $strapdir/etc/inittab >/dev/null
- done
+ done || true
for i in $custmodules; do
grep -q "^$i" $strapdir/etc/modules && continue
print "$i" | sudo tee -a $strapdir/etc/modules >/dev/null
- done
+ done || true
[[ -n "$TAR_STAGE4" ]] && bootstrap_tar_pack "$bootstrap_tgz_stage4"
}