diff options
Diffstat (limited to 'scripts/repo-info.sh')
-rwxr-xr-x | scripts/repo-info.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/repo-info.sh b/scripts/repo-info.sh index 72d974d04..675a2cf62 100755 --- a/scripts/repo-info.sh +++ b/scripts/repo-info.sh @@ -43,7 +43,7 @@ if [[ ${TAG} ]]; then else TAG=$(${GIT_EXE} describe $(${GIT_EXE} rev-list --tags --max-count=1)) if [[ ${TAG} ]]; then - REV=$(${GIT_EXE} rev-list $(${GIT_EXE} merge-base 0.10.2 HEAD).. --count) + REV=$(${GIT_EXE} rev-list $(${GIT_EXE} merge-base ${TAG} HEAD).. --count) else REV=$(${GIT_EXE} rev-list HEAD --count) fi @@ -57,7 +57,7 @@ fi DATE=$(${GIT_EXE} log -1 --format="format:%ai") # Output -# Only write tag and rev if they exist. A fresh clone currently has no tags. +# Only write tag and rev if they exist. echo "URL=${URL}" echo "HASH=${HASH}" if [[ ${TAG} ]]; then echo "TAG=${TAG}"; fi |