From 25dd9f3abbc74eea2a206c3c258f25bf7a4e20c5 Mon Sep 17 00:00:00 2001 From: John Benediktsson Date: Mon, 22 Dec 2014 23:14:47 -0800 Subject: [PATCH] bootstrap: fix this use of (command-line). --- basis/bootstrap/finish-staging.factor | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/basis/bootstrap/finish-staging.factor b/basis/bootstrap/finish-staging.factor index 4512d84053..5dd6d4cd53 100644 --- a/basis/bootstrap/finish-staging.factor +++ b/basis/bootstrap/finish-staging.factor @@ -1,9 +1,10 @@ -USING: init command-line system namespaces kernel vocabs.loader io ; +USING: command-line init io kernel namespaces sequences system +vocabs.loader ; [ boot do-startup-hooks - (command-line) parse-command-line + (command-line) rest parse-command-line "run" get run output-stream get [ stream-flush ] when* 0 exit