Skip to content

Commit ae9c724

Browse files
committed
add x.py.zsh to tidy check
Signed-off-by: onur-ozkan <work@onurozkan.dev>
1 parent 5c85082 commit ae9c724

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/bootstrap/test.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -1135,13 +1135,14 @@ help: to skip test's attempt to check tidiness, pass `--skip src/tools/tidy` to
11351135
builder.ensure(ExpandYamlAnchors);
11361136

11371137
builder.info("x.py completions check");
1138-
let [bash, fish, powershell] = ["x.py.sh", "x.py.fish", "x.py.ps1"]
1138+
let [bash, zsh, fish, powershell] = ["x.py.sh", "x.py.zsh", "x.py.fish", "x.py.ps1"]
11391139
.map(|filename| builder.src.join("src/etc/completions").join(filename));
11401140
if builder.config.cmd.bless() {
11411141
builder.ensure(crate::run::GenerateCompletions);
11421142
} else if crate::flags::get_completion(shells::Bash, &bash).is_some()
11431143
|| crate::flags::get_completion(shells::Fish, &fish).is_some()
11441144
|| crate::flags::get_completion(shells::PowerShell, &powershell).is_some()
1145+
|| crate::flags::get_completion(shells::Zsh, &zsh).is_some()
11451146
{
11461147
eprintln!(
11471148
"x.py completions were changed; run `x.py run generate-completions` to update them"

0 commit comments

Comments
 (0)