Browse Source

Create themes folder on init

index-subcmd
Vincent Prouillet 6 years ago
parent
commit
699ffb07ce
1 changed files with 1 additions and 0 deletions
  1. +1
    -0
      src/cmd/init.rs

+ 1
- 0
src/cmd/init.rs View File

@@ -49,6 +49,7 @@ pub fn create_new_project(name: &str) -> Result<()> {
create_dir(path.join("content"))?;
create_dir(path.join("templates"))?;
create_dir(path.join("static"))?;
create_dir(path.join("themes"))?;
if compile_sass {
create_dir(path.join("sass"))?;
}


Loading…
Cancel
Save