fix factor.sh for a couple of modes that nobody has used in a long time

Doug Coleman 2009-08-15 14:25:16 -05:00
parent 98653b0a93
commit b239c3b605
1 changed files with 2 additions and 2 deletions

View File

@ -487,12 +487,12 @@ update_bootstrap() {
}
refresh_image() {
./$FACTOR_BINARY -script -e="USE: vocabs.loader USE: system refresh-all USE: memory save 0 exit"
./$FACTOR_BINARY -script -e="USING: vocabs.loader system memory ; refresh-all USE: memory save 0 exit"
check_ret factor
}
make_boot_image() {
./$FACTOR_BINARY -script -e="\"$MAKE_IMAGE_TARGET\" USE: system USE: bootstrap.image make-image save 0 exit"
./$FACTOR_BINARY -script -e="\"$MAKE_IMAGE_TARGET\" USING: system bootstrap.image memory ; make-image save 0 exit"
check_ret factor
}