what is happening here, for all hails sake
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
@@ -1,11 +1,16 @@
|
||||
#!/bin/bash
|
||||
CHANGES=()
|
||||
declare -A CH
|
||||
|
||||
|
||||
|
||||
CH=()
|
||||
|
||||
git diff-tree --no-commit-id --name-only HEAD -r | \
|
||||
while read line; do
|
||||
CHANGES+=$(dirname ${line})
|
||||
done
|
||||
echo ${CHANGES}
|
||||
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 ${CHANGES} |sort |uniq)
|
||||
UNIQ=$(echo ${CH} |sort |uniq)
|
||||
echo ${UNIQ}
|
||||
Reference in New Issue
Block a user