Skip to content

Commit 91f6e00

Browse files
Fix tidy errors
1 parent 65fedeb commit 91f6e00

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

REUSE.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ SPDX-FileCopyrightText = "2015 Anders Kaseorg <[email protected]>"
9292
SPDX-License-Identifier = "MIT"
9393

9494
[[annotations]]
95-
path = "src/librustdoc/html/static/fonts/FiraSans**"
95+
path = "src/librustdoc/html/static/fonts/Fira**"
9696
precedence = "override"
9797
SPDX-FileCopyrightText = ["2014, Mozilla Foundation", "2014, Telefonica S.A."]
9898
SPDX-License-Identifier = "OFL-1.1"

license-metadata.json

+2
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,8 @@
113113
{
114114
"directories": [],
115115
"files": [
116+
"FiraMono-Medium.woff2",
117+
"FiraMono-Regular.woff2",
116118
"FiraSans-LICENSE.txt",
117119
"FiraSans-Medium.woff2",
118120
"FiraSans-Regular.woff2"

src/tools/tidy/src/bins.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ mod os_impl {
134134
&mut |entry| {
135135
let file = entry.path();
136136
let extension = file.extension();
137-
let scripts = ["py", "sh", "ps1"];
137+
let scripts = ["py", "sh", "ps1", "woff2"];
138138
if scripts.into_iter().any(|e| extension == Some(OsStr::new(e))) {
139139
return;
140140
}

0 commit comments

Comments
 (0)