mirror of
https://github.com/rust-lang/rustlings.git
synced 2024-11-08 09:09:17 +01:00
Improve output after initialization
This commit is contained in:
parent
6d1d42d2dd
commit
8bf8b19a5d
12
src/init.rs
12
src/init.rs
@ -1,4 +1,5 @@
|
||||
use anyhow::{bail, Context, Result};
|
||||
use crossterm::style::Stylize;
|
||||
use std::{
|
||||
env::set_current_dir,
|
||||
fs::{self, create_dir},
|
||||
@ -58,7 +59,11 @@ pub fn init() -> Result<()> {
|
||||
.stderr(Stdio::null())
|
||||
.status();
|
||||
|
||||
println!("{POST_INIT_MSG}");
|
||||
println!(
|
||||
"\n{}\n\n{}",
|
||||
"Initialization done ✓".green(),
|
||||
POST_INIT_MSG.bold(),
|
||||
);
|
||||
|
||||
Ok(())
|
||||
}
|
||||
@ -84,8 +89,5 @@ You probably already initialized Rustlings.
|
||||
Run `cd rustlings`
|
||||
Then run `rustlings` again";
|
||||
|
||||
const POST_INIT_MSG: &str = "
|
||||
Done initialization!
|
||||
|
||||
Run `cd rustlings` to go into the generated directory.
|
||||
const POST_INIT_MSG: &str = "Run `cd rustlings` to go into the generated directory.
|
||||
Then run `rustlings` to get started.";
|
||||
|
Loading…
Reference in New Issue
Block a user