Skip to content

Commit 7d08ff3

Browse files
committed
test
1 parent 1734414 commit 7d08ff3

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

build.sh

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,9 @@ add_ffargs() {
3434

3535
apply-patch() {
3636
GIT_CMD="git -C $1 apply $(pwd)/patches/$2 --ignore-whitespace"
37-
if ! $GIT_CMD -R --check; then
38-
$GIT_CMD --ignore-whitespace
37+
if ! $GIT_CMD -R --check 2>/dev/null; then
38+
echo Apply patch $2 for $1
39+
$GIT_CMD
3940
else
4041
echo Skip $2 for $1
4142
fi

0 commit comments

Comments
 (0)