Skip to content

Commit

Permalink
chore: WIP RFD for the plugin SDK
Browse files Browse the repository at this point in the history
Signed-off-by: Andrew Lilley Brinker <[email protected]>
  • Loading branch information
alilleybrinker committed Sep 12, 2024
1 parent 9bee656 commit 930da10
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 7 additions & 0 deletions site/content/rfds/0006-rust-plugin-sdk.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
title: Rust Plugin SDK
weight: 6
slug: 0006
extra:
rfd: 6
---
2 changes: 1 addition & 1 deletion xtask/src/task/rfd.rs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ fn new(args: NewRfdArgs) -> Result<()> {

let title = args.title.to_case(Case::Kebab);
let file_name = format!("{:04}-{}.md", id, title);
let path = pathbuf![&root, "docs", "rfds", &file_name];
let path = pathbuf![&root, "site", "content", "rfds", &file_name];
let _ = File::create_new(path)?;
log::warn!(
"created draft RFD #{}: \"{}\", at '{}'",
Expand Down

0 comments on commit 930da10

Please sign in to comment.