whats happening
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2024-04-21 16:15:00 +02:00
parent d4f052787f
commit 3ced13f704
5 changed files with 178 additions and 0 deletions

11
bin/find_changes.sh Executable file
View File

@@ -0,0 +1,11 @@
#!/bin/bash
CHANGES=()
git diff-tree --no-commit-id --name-only HEAD -r | \
while read line; do
CHANGES+=$(dirname ${line})
done
echo ${CHANGES}
UNIQ=$(echo ${CHANGES} |sort |uniq)
echo ${UNIQ}