We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1734414 commit 7d08ff3Copy full SHA for 7d08ff3
build.sh
@@ -34,8 +34,9 @@ add_ffargs() {
34
35
apply-patch() {
36
GIT_CMD="git -C $1 apply $(pwd)/patches/$2 --ignore-whitespace"
37
- if ! $GIT_CMD -R --check; then
38
- $GIT_CMD --ignore-whitespace
+ if ! $GIT_CMD -R --check 2>/dev/null; then
+ echo Apply patch $2 for $1
39
+ $GIT_CMD
40
else
41
echo Skip $2 for $1
42
fi
0 commit comments