[UPD] add return line in bash script
This commit is contained in:
parent
4782f4f77a
commit
11e07fddf3
2 changed files with 3 additions and 0 deletions
|
|
@ -6,5 +6,6 @@ BASENAME=$(basename "${CURRENT}")
|
||||||
docker exec -u root -ti ${BASENAME}_ERPLibre_1 /bin/bash -c "\
|
docker exec -u root -ti ${BASENAME}_ERPLibre_1 /bin/bash -c "\
|
||||||
cd /ERPLibre; \
|
cd /ERPLibre; \
|
||||||
./.venv/repo forall -pc 'git status -s'; \
|
./.venv/repo forall -pc 'git status -s'; \
|
||||||
|
echo ''; \
|
||||||
git status -s; \
|
git status -s; \
|
||||||
"
|
"
|
||||||
|
|
|
||||||
|
|
@ -3,5 +3,7 @@
|
||||||
LAST_TAG=$(git describe --tags $(git rev-list --tags --max-count=1))
|
LAST_TAG=$(git describe --tags $(git rev-list --tags --max-count=1))
|
||||||
./.venv/repo forall -pc "git diff --stat ERPLibre/${LAST_TAG}..HEAD"
|
./.venv/repo forall -pc "git diff --stat ERPLibre/${LAST_TAG}..HEAD"
|
||||||
|
|
||||||
|
echo ""
|
||||||
|
|
||||||
# For actual repo
|
# For actual repo
|
||||||
git diff --stat ${LAST_TAG}..HEAD
|
git diff --stat ${LAST_TAG}..HEAD
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue