aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRechi <Rechi@users.noreply.github.com>2017-10-19 16:12:35 +0200
committerRechi <Rechi@users.noreply.github.com>2017-10-19 16:12:35 +0200
commit922a6bb1959befa982f8c37ea3336b018ffe12db (patch)
tree5f918f2697f55c74640742f5bbd3bafc324ccfab
parent432e5bef8ef38db0b2e7447f09daa160ea47987a (diff)
Revert "[buildtools][windows] fail if patch doesn't succeed"
This reverts commit cd6702402057f2d7b602fb6ef1cf030dff9da9a5.
-rw-r--r--tools/buildsteps/windows/buildhelpers.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/buildsteps/windows/buildhelpers.sh b/tools/buildsteps/windows/buildhelpers.sh
index 3dc0379cc0..8b2463fafb 100644
--- a/tools/buildsteps/windows/buildhelpers.sh
+++ b/tools/buildsteps/windows/buildhelpers.sh
@@ -129,7 +129,7 @@ do_download() {
for patch in ${patches[@]}; do
echo "Applying patch ${patch}"
if [[ -f $patch ]]; then
- patch -d $LOCALSRCDIR -i $patch -N -r - || exit $?
+ patch -d $LOCALSRCDIR -i $patch -N -r -
fi
done
}