summaryrefslogtreecommitdiff
path: root/cli/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'cli/main.rs')
-rw-r--r--cli/main.rs8
1 files changed, 1 insertions, 7 deletions
diff --git a/cli/main.rs b/cli/main.rs
index 445649e5f..98700c2b7 100644
--- a/cli/main.rs
+++ b/cli/main.rs
@@ -585,13 +585,7 @@ async fn repl_command(
)
.await?;
worker.setup_repl().await?;
- tools::repl::run(
- &ps,
- worker.into_main_worker(),
- repl_flags.eval_files,
- repl_flags.eval,
- )
- .await
+ tools::repl::run(&ps, worker.into_main_worker(), repl_flags).await
}
async fn run_from_stdin(flags: Flags) -> Result<i32, AnyError> {