build: Fix paths...

flac
Doug Coleman 2020-01-04 13:47:13 -06:00 committed by Steve Ayerhart
parent 99d760e08f
commit 22a2d8a74a
No known key found for this signature in database
GPG Key ID: 5BFD39C5359E967D
2 changed files with 3 additions and 3 deletions

View File

@ -39,7 +39,7 @@ echo Deleting staging images from temp/...
del temp\staging.*.image del temp\staging.*.image
echo Updating working copy from %GIT_BRANCH%... 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 if errorlevel 1 goto fail
echo Building vm... echo Building vm...

View File

@ -16,7 +16,7 @@ IN: mason.git
{ {
"git" "git"
"clone" "clone"
"git://factorcode.org/git/factor-github.git" "git://factorcode.org/git/factor.git"
} ; } ;
: git-clone ( -- ) : git-clone ( -- )
@ -28,7 +28,7 @@ IN: mason.git
{ {
"git" "git"
"pull" "pull"
"git://factorcode.org/git/factor-github.git" "git://factorcode.org/git/factor.git"
"master" "master"
} ; } ;