Skip to content

Commit 1ff783b

Browse files
committed
Fix docbuilder to use new lowercase folders
1 parent 222d57a commit 1ff783b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docbuilder/src/main.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,8 +82,8 @@ fn create_docs(list: Vec<Document>) {
8282
filetop.push_str("Actions are like shell commands: they take arguments and do something! Skytable currently supports the following actions: \n\n");
8383
for action in list {
8484
let name = action.0;
85-
filetop.push_str(&format!("* [{}](Actions/{}.md)\n", &name, &name));
86-
let mut file = std::fs::File::create(format!("../docs/Actions/{}.md", name)).unwrap();
85+
filetop.push_str(&format!("* [{}](actions/{}.md)\n", &name, &name));
86+
let mut file = std::fs::File::create(format!("../docs/actions/{}.md", name)).unwrap();
8787
file.write_all(&action.1.into_bytes()).unwrap();
8888
}
8989
let mut file = std::fs::File::create("../docs/actions.md").unwrap();

0 commit comments

Comments
 (0)