diff options
-rwxr-xr-x | bootstrap-prepare.sh | 3 |
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 |