Skip to content

Commit

Permalink
Fix tidy errors
Browse files Browse the repository at this point in the history
  • Loading branch information
GuillaumeGomez committed Dec 4, 2024
1 parent 62bfdcb commit 762eec8
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 2 deletions.
2 changes: 1 addition & 1 deletion REUSE.toml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ SPDX-FileCopyrightText = "2015 Anders Kaseorg <[email protected]>"
SPDX-License-Identifier = "MIT"

[[annotations]]
path = "src/librustdoc/html/static/fonts/FiraSans**"
path = "src/librustdoc/html/static/fonts/Fira**"
precedence = "override"
SPDX-FileCopyrightText = ["2014, Mozilla Foundation", "2014, Telefonica S.A."]
SPDX-License-Identifier = "OFL-1.1"
Expand Down
18 changes: 18 additions & 0 deletions license-metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,8 @@
{
"directories": [],
"files": [
"FiraMono-Medium.woff2",
"FiraMono-Regular.woff2",
"FiraSans-LICENSE.txt",
"FiraSans-Medium.woff2",
"FiraSans-Regular.woff2"
Expand Down Expand Up @@ -150,6 +152,22 @@
"name": "src/librustdoc/html/static/fonts",
"type": "directory"
},
{
"directories": [],
"files": [
"bar.rs",
"bla.rs",
"boo.rs",
"foo.rs"
],
"license": {
"copyright": [
"NONE"
],
"spdx": "NONE"
},
"type": "group"
},
{
"license": {
"copyright": [
Expand Down
2 changes: 1 addition & 1 deletion src/tools/tidy/src/bins.rs
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ mod os_impl {
&mut |entry| {
let file = entry.path();
let extension = file.extension();
let scripts = ["py", "sh", "ps1"];
let scripts = ["py", "sh", "ps1", "woff2"];
if scripts.into_iter().any(|e| extension == Some(OsStr::new(e))) {
return;
}
Expand Down

0 comments on commit 762eec8

Please sign in to comment.