From 9bb19274b2e96ca085b94e6934efc11a7eaf6212 Mon Sep 17 00:00:00 2001 From: Doug Coleman Date: Sat, 4 Jan 2020 13:47:13 -0600 Subject: [PATCH] build: Fix paths... --- build.cmd | 2 +- extra/mason/git/git.factor | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) 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" } ; -- 2.34.1