Skip to content

Commit e05dcf8

Browse files
committed
ci: Don't remove dir
1 parent 7c3021b commit e05dcf8

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

vendor-one.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,4 +79,6 @@ git add .
7979
git -C "$upstream_dir" log --first-parent --format="%s" ${base}..${commit} | tee /dev/stderr | sed -r 's%(#[0-9]+)%duckdb/duckdb\1%g'
8080
) | git commit --file /dev/stdin
8181

82-
rm -rf "$upstream_dir"
82+
if [ "$upstream_basedir" != ".git/duckdb" ]; then
83+
rm -rf "$upstream_dir"
84+
fi

0 commit comments

Comments
 (0)