From: Doug Coleman Date: Sat, 4 Jan 2020 19:47:13 +0000 (-0600) Subject: build: Fix paths... X-Git-Tag: 0.99~3595 X-Git-Url: https://gitweb.factorcode.org/gitweb.cgi?p=factor.git;a=commitdiff_plain;h=9bb19274b2e96ca085b94e6934efc11a7eaf6212 build: Fix paths... --- diff --git a/build.cmd b/build.cmd index 6d964ec660..eb8cd39990 100644 --- 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... diff --git a/extra/mason/git/git.factor b/extra/mason/git/git.factor index 1fb5339733..8f4d03a564 100644 --- a/extra/mason/git/git.factor +++ b/extra/mason/git/git.factor @@ -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" } ;