mirror of
https://source.quilibrium.com/quilibrium/ceremonyclient.git
synced 2024-11-10 18:25:17 +00:00
15 lines
249 B
Bash
15 lines
249 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
BASE_SHA="$1"
|
||
|
HEAD_SHA="$2"
|
||
|
|
||
|
if [ -z "$HEAD_SHA" ];then
|
||
|
echo "Usage: $0 <base-sha> <head-sha>"
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
git diff --name-only "${BASE_SHA}..${HEAD_SHA}" -- "*.go" \
|
||
|
| xargs -rn1 dirname \
|
||
|
| sort -u \
|
||
|
| xargs echo
|