mirror of
https://github.com/lune-org/lune.git
synced 2025-05-04 10:43:57 +01:00
fix: remove testing code
This commit is contained in:
parent
a3f88fac4a
commit
1051d55cdc
1 changed files with 6 additions and 6 deletions
|
@ -116,11 +116,6 @@ pub async fn show_interface(cmd: Command) -> Result<ExitCode> {
|
||||||
Ok(_) => (),
|
Ok(_) => (),
|
||||||
|
|
||||||
Err(err) => {
|
Err(err) => {
|
||||||
println!("{}", err.to_string());
|
|
||||||
|
|
||||||
write!(&mut source_code, "{}", "\n")?;
|
|
||||||
prompt_kind = PromptState::Continuation;
|
|
||||||
|
|
||||||
eprintln!("{}", pretty_format_luau_error(&err.into_lua_err(), true))
|
eprintln!("{}", pretty_format_luau_error(&err.into_lua_err(), true))
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
@ -132,7 +127,12 @@ pub async fn show_interface(cmd: Command) -> Result<ExitCode> {
|
||||||
fn save_repl_activity(mut repl: Editor<(), FileHistory>) -> Result<()> {
|
fn save_repl_activity(mut repl: Editor<(), FileHistory>) -> Result<()> {
|
||||||
// Once again, we know that the specified home directory
|
// Once again, we know that the specified home directory
|
||||||
// and history file already exist
|
// and history file already exist
|
||||||
repl.save_history(&directories::UserDirs::new().unwrap().home_dir().join(".lune_history"))?;
|
repl.save_history(
|
||||||
|
&directories::UserDirs::new()
|
||||||
|
.unwrap()
|
||||||
|
.home_dir()
|
||||||
|
.join(".lune_history"),
|
||||||
|
)?;
|
||||||
|
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue