2021-07-01 03:18:56 -04:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
2021-07-16 00:13:05 -04:00
|
|
|
Color_Off='\033[0m' # Text Reset
|
|
|
|
|
BOLD='\033[1m' # Black
|
|
|
|
|
|
2021-07-01 03:18:56 -04:00
|
|
|
LAST_TAG=$(git describe --tags $(git rev-list --tags --max-count=1))
|
|
|
|
|
./.venv/repo forall -pc "git diff --stat ERPLibre/${LAST_TAG}..HEAD"
|
|
|
|
|
|
2021-07-01 03:19:29 -04:00
|
|
|
echo ""
|
2021-07-16 00:13:05 -04:00
|
|
|
echo -e "${BOLD}project /${Color_Off}"
|
2021-07-01 03:19:29 -04:00
|
|
|
|
2021-07-01 03:18:56 -04:00
|
|
|
# For actual repo
|
|
|
|
|
git diff --stat ${LAST_TAG}..HEAD
|