]> gitweb.factorcode.org Git - factor.git/commitdiff
build: Fix paths...
authorDoug Coleman <doug.coleman@gmail.com>
Sat, 4 Jan 2020 19:47:13 +0000 (13:47 -0600)
committerDoug Coleman <doug.coleman@gmail.com>
Sat, 4 Jan 2020 19:47:13 +0000 (13:47 -0600)
build.cmd
extra/mason/git/git.factor

index 6d964ec6604f12dc2dbff9265bd739f7a813c94a..eb8cd39990543302e0627e13f6af87f1d4c2ce36 100644 (file)
--- a/build.cmd
+++ b/build.cmd
@@ -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...
index 1fb5339733be48d75d071c0180d4ffaba28e1d47..8f4d03a5641be633def15e2707fd065e01a87e3c 100644 (file)
@@ -16,7 +16,7 @@ IN: mason.git
     {
         "git"
         "clone"
-        "git://factorcode.org/git/factor-github.git"
+        "git://factorcode.org/git/factor.git"
     } ;
 
 : git-clone ( -- )
@@ -28,7 +28,7 @@ IN: mason.git
     {
         "git"
         "pull"
-        "git://factorcode.org/git/factor-github.git"
+        "git://factorcode.org/git/factor.git"
         "master"
     } ;