From 11e07fddf3f5ad2a1ab746f1a55f936dfe40d347 Mon Sep 17 00:00:00 2001 From: Mathieu Benoit Date: Thu, 1 Jul 2021 03:19:29 -0400 Subject: [PATCH] [UPD] add return line in bash script --- script/docker/docker_repo_show_status.sh | 1 + script/repo_diff_stat_last_version.sh | 2 ++ 2 files changed, 3 insertions(+) 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