Change the current working directory instead of using --work-dir.

It was previously working in a false-positive state, where it would behave as
expected if you ran "make" from within a subdirectory of the git repo. If you
ran make anywhere else, at least diff-index would break.
This commit is contained in:
sawinglogz 2019-05-07 16:50:58 -04:00
parent a458fdfad6
commit 71c05c4625
2 changed files with 7 additions and 6 deletions

View File

@ -1,10 +1,11 @@
@echo off
setlocal
set DIR=%~dp0
cd %DIR%
for /f %%i in ('git --work-tree %DIR% rev-parse --abbrev-ref HEAD') do set GIT_BRANCH=%%i
for /f %%i in ('git --work-tree %DIR% rev-parse --short HEAD') do set GIT_REVISION=%%i
git --work-tree %DIR% diff-index --quiet HEAD || set GIT_REVISION=%GIT_REVISION%+
for /f %%i in ('git rev-parse --abbrev-ref HEAD') do set GIT_BRANCH=%%i
for /f %%i in ('git rev-parse --short HEAD') do set GIT_REVISION=%%i
git diff-index --quiet HEAD -- || set GIT_REVISION=%GIT_REVISION%+
if "%GIT_BRANCH"=="" set GIT_BRANCH="Unknown"
if "%GIT_REVISION"=="" set GIT_REVISION="Unknown"

View File

@ -3,9 +3,9 @@
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
cd $DIR
GIT_BRANCH=`git --work-tree $DIR rev-parse --abbrev-ref HEAD`
GIT_REVISION=`git --work-tree $DIR rev-parse --short HEAD`
$(git --work-tree $DIR diff-index --quiet HEAD)
GIT_BRANCH=`git rev-parse --abbrev-ref HEAD`
GIT_REVISION=`git rev-parse --short HEAD`
$(git diff-index --quiet HEAD --)
if [ $? -ne 0 ]; then
GIT_REVISION="$GIT_REVISION+" # uncommitted changes
fi