summaryrefslogtreecommitdiffstats
path: root/bootstrap-prepare.sh
diff options
context:
space:
mode:
authorP. J. McDermott <pjm@nac.net>2013-06-02 10:59:03 (EDT)
committer P. J. McDermott <pjm@nac.net>2013-06-02 10:59:03 (EDT)
commitc81ad4ad65555424c3547abf88ab13e7bd94d641 (patch)
tree5d299bc12d432cbc4cba9e9e6c5240300a086648 /bootstrap-prepare.sh
parentc433c6d06e1fdcbfa70427ccce56f306fc87323a (diff)
bootstrap-prepare.sh: Don't exit on failed patch.
Diffstat (limited to 'bootstrap-prepare.sh')
-rwxr-xr-xbootstrap-prepare.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/bootstrap-prepare.sh b/bootstrap-prepare.sh
index 9b8d53b..7a257dc 100755
--- a/bootstrap-prepare.sh
+++ b/bootstrap-prepare.sh
@@ -117,7 +117,8 @@ patch_packages()
if [ -d "${SCRIPT_DIR}/patches/${dir}" ]; then
log 'Patching package %s...' "${dir%/}"
for patch in "${SCRIPT_DIR}/patches/${dir}"*; do
- patch -N -p 1 -u -d "${dir}" -i "${patch}"
+ patch -N -p 1 -u -d "${dir}" -i "${patch}" || \
+ true
done
fi
done