From 76a6235940b7c23597df76193d59ba5593f9d49a Mon Sep 17 00:00:00 2001 From: Doug Coleman Date: Sat, 16 Sep 2017 12:27:04 -0500 Subject: [PATCH] zealot.factor: Print a message for each step. --- extra/zealot/factor/factor.factor | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/extra/zealot/factor/factor.factor b/extra/zealot/factor/factor.factor index 87ff97dc48..f496c0985c 100644 --- a/extra/zealot/factor/factor.factor +++ b/extra/zealot/factor/factor.factor @@ -131,10 +131,10 @@ M: windows factor-path "./factor.com" ; [ drop "factor" "factor" zealot-github-add-build-remote drop ] [ drop [ git-fetch-all* ] with-directory drop ] [ zealot-build-checkout-branch drop ] - [ download-my-boot-image ] - [ download-boot-checksums ] - [ drop compile-factor ] - [ drop bootstrap-factor ] - [ "ZEALOT LOAD" print flush yield drop zealot-load-commands ] - [ drop zealot-test-commands ] + [ "ZEALOT DOWNLOADING BOOT IMAGE" print flush download-my-boot-image ] + [ "ZEALOT DOWNLOADING CHECKSUMS" print flush download-boot-checksums ] + [ "ZEALOT COMPILING" print flush drop compile-factor ] + [ "ZEALOT BOOTSTRAPPING" print flush drop bootstrap-factor ] + [ "ZEALOT LOADING ROOTS" print flush drop zealot-load-commands ] + [ "ZEALOT TESTING ROOTS" print flush drop zealot-test-commands ] } 2cleave ; \ No newline at end of file