Skip to content

Commit 7be56ad

Browse files
committed
Add help message for zine new command
1 parent 9875b25 commit 7be56ad

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

src/new.rs

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,15 @@ pub fn new_zine_project(name: Option<String>) -> Result<()> {
107107
};
108108

109109
scaffold.create_project(&name.unwrap_or_default())?;
110+
println!(r#"
111+
Created sucessfully!
112+
113+
To start your magazine, run:
114+
$ zine serve
115+
116+
Or to build your magazine, run:
117+
$ zine build
118+
"#);
110119
Ok(())
111120
}
112121

0 commit comments

Comments
 (0)