mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
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:
parent
a458fdfad6
commit
71c05c4625
@ -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"
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user