We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 608710a commit af1821cCopy full SHA for af1821c
src/template.rs
@@ -40,13 +40,14 @@ fn create_template(template: CreateTemplate) {
40
} else if template.template.contains('/') {
41
(template.template.as_str(), "main")
42
} else if template.template.is_empty() {
43
- ("geode-sdk/example-mod", "main")
+ ("https://github.com/geode-sdk/example-mod", "main")
44
} else {
45
46
};
47
-
48
- info!("Cloning {}", used_template);
49
+
+ // Remove this if you dont think its needed
+ info!("Cloning branch {} of repository {}", branch, used_template);
50
51
// Clone repository
52
RepoBuilder::new()
53
.branch(branch)
0 commit comments