]> gitweb.factorcode.org Git - factor.git/blobdiff - build.cmd
build.cmd: github is source of truth now
[factor.git] / build.cmd
index 757bf45f37a67e394dcf1914d86b99d7535353e1..eb8cd39990543302e0627e13f6af87f1d4c2ce36 100644 (file)
--- a/build.cmd
+++ b/build.cmd
@@ -3,8 +3,8 @@ 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 %GIT_BRANCH% =="" (
-    GIT_BRANCH = "master"
+if not defined GIT_BRANCH (
+    set GIT_BRANCH=master
 )
 
 if "%1"=="/?" (
@@ -39,7 +39,7 @@ 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...