]> gitweb.factorcode.org Git - factor.git/commitdiff
cli.git: wait-for-success takes a sequence too
authorDoug Coleman <doug.coleman@gmail.com>
Tue, 22 Aug 2023 03:02:00 +0000 (22:02 -0500)
committerDoug Coleman <doug.coleman@gmail.com>
Tue, 22 Aug 2023 04:21:31 +0000 (23:21 -0500)
extra/cli/git/git.factor

index 5839c312316ab0ec9731eaca07ac89f73331ee02..a88c255e5c2f00979cf71c7ad633deccc83f846d 100644 (file)
@@ -89,8 +89,8 @@ cli-git-num-parallel [ cpus 2 * ] initialize
 : sync-no-checkout-repository-as ( url path -- processes )
     dup git-no-checkout-directory?
     [ nip git-fetch-all ] [
-        [ git-clone-no-checkout-as wait-for-success ]
-        [ "factor-build-from-source" git-switch-new-branch ] bi
+        [ git-clone-no-checkout-as ]
+        [ "factor-build-from-source" git-switch-new-branch ] bi 2array
     ] if ;
 
 : sync-bare-repository ( url -- process )