build.cmd: fix cmd script syntax
parent
8c6925294f
commit
2b1dc5a376
|
@ -3,8 +3,8 @@ setlocal
|
||||||
|
|
||||||
: Check which branch we are on, or just assume master if we are not in a git repository
|
: Check which branch we are on, or just assume master if we are not in a git repository
|
||||||
for /f %%z in ('git rev-parse --abbrev-ref HEAD') do set GIT_BRANCH=%%z
|
for /f %%z in ('git rev-parse --abbrev-ref HEAD') do set GIT_BRANCH=%%z
|
||||||
if %GIT_BRANCH% =="" (
|
if not defined GIT_BRANCH (
|
||||||
GIT_BRANCH = "master"
|
set GIT_BRANCH=master
|
||||||
)
|
)
|
||||||
|
|
||||||
if "%1"=="/?" (
|
if "%1"=="/?" (
|
||||||
|
|
Loading…
Reference in New Issue