build.cmd: Get boot images from the branch you're on.

factor-shell
Doug Coleman 2017-12-09 01:42:55 -06:00
parent f96f6d787e
commit 2d8d374d7d
1 changed files with 8 additions and 8 deletions

View File

@ -1,14 +1,19 @@
@echo off @echo off
setlocal setlocal
: Fun syntax
for /f %%x in ('git describe --all') do set GIT_DESCRIBE=%%x
for /f %%y in ('git rev-parse HEAD') do set GIT_ID=%%y
for /f %%z in ('git rev-parse --abbrev-ref HEAD') do set GIT_BRANCH=%%z
if "%1"=="/?" ( if "%1"=="/?" (
goto usage goto usage
) else if "%1"=="" ( ) else if "%1"=="" (
set _bootimage_version=latest set _bootimage_version=%GIT_BRANCH%
) else if "%1"=="latest" ( ) else if "%1"=="latest" (
set _bootimage_version=latest set _bootimage_version=%GIT_BRANCH%
) else if "%1"=="update" ( ) else if "%1"=="update" (
set _bootimage_version=latest set _bootimage_version=%GIT_BRANCH%
) else if "%1"=="clean" ( ) else if "%1"=="clean" (
set _bootimage_version=clean set _bootimage_version=clean
) else goto usage ) else goto usage
@ -29,11 +34,6 @@ if not errorlevel 1 (
) else goto nocl ) else goto nocl
) )
: Fun syntax
for /f %%x in ('git describe --all') do set GIT_DESCRIBE=%%x
for /f %%y in ('git rev-parse HEAD') do set GIT_ID=%%y
for /f %%z in ('git rev-parse --abbrev-ref HEAD') do set GIT_BRANCH=%%z
set git_label=%GIT_DESCRIBE%-%GIT_ID% set git_label=%GIT_DESCRIBE%-%GIT_ID%
set version=0.98 set version=0.98