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
|
#!/bin/bash
|
||||||
CHANGES=()
|
declare -A CH
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
CH=()
|
||||||
|
|
||||||
git diff-tree --no-commit-id --name-only HEAD -r | \
|
|
||||||
while read line; do
|
while read line; do
|
||||||
CHANGES+=$(dirname ${line})
|
WHAT=$(dirname ${line})
|
||||||
done
|
echo "LIN: ${line} WHAT: ${WHAT}"
|
||||||
echo ${CHANGES}
|
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}
|
echo ${UNIQ}
|
||||||
Reference in New Issue
Block a user