Files
docker-images/bin/find_changes.sh
Udo Waechter bcd8242061
All checks were successful
continuous-integration/drone/push Build is passing
what is happening here, for all hails sake
2024-04-21 16:29:41 +02:00

16 lines
251 B
Bash
Executable File

#!/bin/bash
declare -A CH
CH=()
while read line; do
WHAT=$(dirname ${line})
echo "LIN: ${line} WHAT: ${WHAT}"
echo $CH
done < <(git diff-tree --no-commit-id --name-only HEAD -r)
echo ${CH}
UNIQ=$(echo ${CH} |sort |uniq)
echo ${UNIQ}