Skip to content

Commit dd021c0

Browse files
committed
Download actiondoc.yml
1 parent 63f20c9 commit dd021c0

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Fork, make changes and submit a PR!
66

77
### Making changes to the `docs/Actions` folder
88
The `Actions` folder contains the documentation for the actions that Skytable supports. However, by no means should you modify them _here_.
9-
You should instead update [this file](https://github.com/skytable/skytable/blob/next/actions.jsonc). The documentation for the actions or the _actiondoc_ as we call it is built automatically from this file by using the `docbuilder` (our custom tool for generating documentation).
9+
You should instead update [this file](https://github.com/skytable/skytable/blob/next/actiondoc.yml). The documentation for the actions or the _actiondoc_ as we call it is built automatically from this file by using the `docbuilder` (our custom tool for generating documentation).
1010

1111
## License
1212
The documentation is licensed under the [CC-BY-SA-4.0](./LICENSE-CC) license while the `docbuilder` is licensed under the [GPL-3.0](./LICENSE-GPL3) license.

docbuilder/src/main.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,12 @@ macro_rules! get_str_array {
2828
fn main() {
2929
// download the file
3030
let _dlfile = Command::new("wget")
31-
.arg("https://raw.githubusercontent.com/skytable/skytable/next/actions.jsonc")
31+
.arg("https://raw.githubusercontent.com/skytable/skytable/next/actiondoc.yml")
3232
.output()
3333
.unwrap();
34-
let output = Command::new("cat").arg("actions.jsonc").output().unwrap();
34+
let output = Command::new("cat").arg("actiondoc.yml").output().unwrap();
3535
let output = String::from_utf8_lossy(&output.stdout);
36-
let _rmfile = Command::new("rm").arg("actions.jsonc").output().unwrap();
36+
let _rmfile = Command::new("rm").arg("actiondoc.yml").output().unwrap();
3737

3838
// now parse it
3939
parse_into_actiondoc(output)

0 commit comments

Comments
 (0)