Files
docker-images/bin/find_changes.sh
Udo Waechter 542fc02720
All checks were successful
continuous-integration/drone/push Build is passing
more changes
2024-04-21 17:05:43 +02:00

15 lines
288 B
Bash
Executable File

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