1 ! Copyright (C) 2008 Eduardo Cavazos, Slava Pestov.
2 ! See http://factorcode.org/license.txt for BSD license.
3 USING: kernel io.launcher bootstrap.image.download
4 mason.common mason.platform ;
7 : git-pull-cmd ( -- cmd )
12 "git://factorcode.org/git/factor.git"
16 : updates-available? ( -- ? )
18 git-pull-cmd short-running-process
22 : new-image-available? ( -- ? )
23 boot-image-name need-new-image?
24 [ boot-image-arch download-image t ] [ f ] if ;
26 : new-code-available? ( -- ? )