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 61e82df commit 598851bCopy full SHA for 598851b
vendor-one.sh
@@ -47,8 +47,12 @@ for commit in $(git -C "$upstream_dir" log --first-parent --reverse --format="%H
47
DUCKDB_PATH="$upstream_dir" python3 rconfigure.py
48
49
for f in patch/*.patch; do
50
- # cat $f | patch -p1 --dry-run
51
- cat $f | patch -p1
+ if patch -i $f -p1 --forward --dry-run; then
+ patch -i $f -p1 --forward
52
+ else
53
+ echo "Removing patch $f"
54
+ rm $f
55
+ fi
56
done
57
58
# Always vendor tags
0 commit comments