]> gitweb.factorcode.org Git - factor.git/commitdiff
mason.build: Can't resolve path ~/builds/factor, not sure how this ever
authorDoug Coleman <doug.coleman@gmail.com>
Wed, 14 Mar 2018 21:17:09 +0000 (16:17 -0500)
committerDoug Coleman <doug.coleman@gmail.com>
Wed, 14 Mar 2018 21:17:09 +0000 (16:17 -0500)
works...

Can't use normalize-path because git.exe doesn't recognize the Windows unicode
path prefix.

extra/mason/build/build.factor

index 567075498bf0834d1721a82bd66aa00e85903222..0fa05ae84efc81d160485520fe0f1ac45f930d21 100644 (file)
@@ -16,7 +16,7 @@ IN: mason.build
 
 : clone-source ( -- )
     "Cloning GIT repository" print-timestamp
-    "git" "clone" builds-dir get "factor" append-path 3array
+    "git" "clone" builds-dir get "factor" append-path absolute-path 3array
     short-running-process ;
 
 : copy-image ( -- )