diff --git a/script/docker/docker_repo_show_status.sh b/script/docker/docker_repo_show_status.sh index ba55bb5..db38b97 100755 --- a/script/docker/docker_repo_show_status.sh +++ b/script/docker/docker_repo_show_status.sh @@ -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; \ " diff --git a/script/repo_diff_stat_last_version.sh b/script/repo_diff_stat_last_version.sh index 1ffac71..1dac192 100755 --- a/script/repo_diff_stat_last_version.sh +++ b/script/repo_diff_stat_last_version.sh @@ -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