From c81ad4ad65555424c3547abf88ab13e7bd94d641 Mon Sep 17 00:00:00 2001 From: P. J. McDermott Date: Sun, 02 Jun 2013 10:59:03 -0400 Subject: bootstrap-prepare.sh: Don't exit on failed patch. --- (limited to 'bootstrap-prepare.sh') 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 -- cgit v0.9.1