treewide: fix spelling errors
Some checks failed
/ triage (push) Has been cancelled
GitHub Pages / publish (ubuntu-latest) (push) Has been cancelled

This commit is contained in:
luo jiyin 2026-03-12 11:32:16 +08:00 committed by GitHub
parent 45fe5c9854
commit 7d06e0cefe
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
18 changed files with 21 additions and 21 deletions

View file

@ -49,10 +49,10 @@ if ($len == 0) {
if ($ENV{"NIX_AUTO_RUN_INTERACTIVE"} // "") {
while (1) {
print STDERR "'$program' from package '$package' will be run, confirm? [yn]: ";
chomp(my $comfirm = <STDIN>);
if (lc $comfirm eq "n") {
chomp(my $confirm = <STDIN>);
if (lc $confirm eq "n") {
exit 0;
} elsif (lc $comfirm eq "y") {
} elsif (lc $confirm eq "y") {
last;
}
}