[UPD] add return line in bash script

This commit is contained in:
Mathieu Benoit 2021-07-01 03:19:29 -04:00
parent 4782f4f77a
commit 11e07fddf3
2 changed files with 3 additions and 0 deletions

View file

@ -6,5 +6,6 @@ BASENAME=$(basename "${CURRENT}")
docker exec -u root -ti ${BASENAME}_ERPLibre_1 /bin/bash -c "\
cd /ERPLibre; \
./.venv/repo forall -pc 'git status -s'; \
echo ''; \
git status -s; \
"

View file

@ -3,5 +3,7 @@
LAST_TAG=$(git describe --tags $(git rev-list --tags --max-count=1))
./.venv/repo forall -pc "git diff --stat ERPLibre/${LAST_TAG}..HEAD"
echo ""
# For actual repo
git diff --stat ${LAST_TAG}..HEAD