]> gitweb.factorcode.org Git - factor.git/blobdiff - build.cmd
fix: add missing vocabulary in example
[factor.git] / build.cmd
index 590265b0d9774c6f7e1175404b4958f11bb8ec8c..eb8cd39990543302e0627e13f6af87f1d4c2ce36 100644 (file)
--- a/build.cmd
+++ b/build.cmd
@@ -1,14 +1,20 @@
 @echo off
 setlocal
 
+: 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
+if not defined GIT_BRANCH (
+    set GIT_BRANCH=master
+)
+
 if "%1"=="/?" (
     goto usage
 ) else if "%1"=="" (
-    set _bootimage_version=latest
+    set _bootimage_version=%GIT_BRANCH%
 ) else if "%1"=="latest" (
-    set _bootimage_version=latest
+    set _bootimage_version=%GIT_BRANCH%
 ) else if "%1"=="update" (
-    set _bootimage_version=latest
+    set _bootimage_version=%GIT_BRANCH%
 ) else if "%1"=="clean" (
     set _bootimage_version=clean
 ) else goto usage
@@ -29,19 +35,11 @@ if not errorlevel 1 (
     ) 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 version=0.98
-
 echo Deleting staging images from temp/...
 del temp\staging.*.image
 
 echo Updating working copy from %GIT_BRANCH%...
-call git pull git://factorcode.org/git/factor.git %GIT_BRANCH%
+call git pull https://github.com/factor/factor %GIT_BRANCH%
 if errorlevel 1 goto fail
 
 echo Building vm...