nightly build, scripts: Remove svn support

Remove deprecated svn support.
This commit is contained in:
Gleb Chesnokov
2024-05-02 17:20:01 +03:00
parent f4840e9579
commit 56bb6c0fa6
4 changed files with 10 additions and 47 deletions
+1 -5
View File
@@ -18,11 +18,7 @@ prefix_matches() {
for d in "${@-.}"; do
(
cd "$d" &&
if [ -e .svn ]; then
svn status --no-ignore |
grep '^[I?] ' |
cut -c8-
elif git branch >&/dev/null; then
if git branch >&/dev/null; then
exec 3< <(find . -type f | cut -c3- | grep -v '^\.git/' | sort)
git ls-tree -r HEAD | cut -f2 -d' ' | sort |
while read -r f; do