Working 'init' command for places

This commit is contained in:
Lucien Greathouse
2019-01-09 21:16:08 -08:00
parent 6ced8f32b1
commit 98f8c5c0f2
3 changed files with 84 additions and 26 deletions

View File

@@ -40,7 +40,7 @@ pub fn init(options: &InitOptions) -> Result<(), InitError> {
Some(invalid) => return Err(InitError::InvalidKind(invalid.to_string())),
};
println!("Created new {} project at {}", project_kind, project_path.display());
println!("Created new {} project file at {}", project_kind, project_path.display());
Ok(())
}