From 88235350061da0cb582c209c1405a8e08eb7b65b Mon Sep 17 00:00:00 2001 From: Eduardo Cavazos Date: Sun, 20 Apr 2008 16:42:57 -0500 Subject: [PATCH] update: Minor fix --- extra/update/update.factor | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/extra/update/update.factor b/extra/update/update.factor index f186837548..9b10ea746f 100644 --- a/extra/update/update.factor +++ b/extra/update/update.factor @@ -1,5 +1,6 @@ USING: kernel system sequences io.files io.launcher bootstrap.image + http.client builder.util builder.release.branch ; IN: update @@ -23,7 +24,7 @@ IN: update : remote-clean-image ( -- url ) "http://factorcode.org/images/clean/" my-boot-image-name append ; -: download-clean-image ( -- ) { "wget" remote-clean-image } run-command ; +: download-clean-image ( -- ) remote-clean-image download ; ! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!