Skip to content

Commit

Permalink
Change code formatting to lowercase in build script
Browse files Browse the repository at this point in the history
  • Loading branch information
ZibanPirate committed Feb 16, 2025
1 parent 5292dd4 commit 0a17b4e
Show file tree
Hide file tree
Showing 2 changed files with 206 additions and 206 deletions.
2 changes: 1 addition & 1 deletion rust/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ mod r#static {
Some((_, info)) => {
let path = dir.as_ref().display().to_string();
let path = path.split("_data/").last().unwrap_or(&path);
let code = path.split('/').last().unwrap_or(path).to_uppercase();
let code = path.split('/').last().unwrap_or(path).to_lowercase();

format!(
r#"const {}: Node = Node {{
Expand Down
Loading

0 comments on commit 0a17b4e

Please sign in to comment.