diff options
author | Guillem Jover <guillem@debian.org> | 2018-08-28 02:33:52 +0200 |
---|---|---|
committer | Guillem Jover <guillem@debian.org> | 2018-08-30 03:14:09 +0200 |
commit | aea951ca62fba38b8ce53e26db802a42304e0c27 (patch) | |
tree | 53d9e517ff940e3e4996398874b28b0b6cbe46fd /dselect | |
parent | e596defa91399a04792c7b37a6eb74a67cd10661 (diff) | |
download | dpkg-aea951ca62fba38b8ce53e26db802a42304e0c27.tar.gz |
dselect: Rename $ans variable to $answer in multicd method
This is detected by codespell as a spelling error. Just use the
non-abbreviated form to make it more clear and stop triggering
codespell.
Warned-by: codespell
Diffstat (limited to 'dselect')
-rwxr-xr-x | dselect/methods/multicd/install | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dselect/methods/multicd/install b/dselect/methods/multicd/install index 577348075..e4d772c6a 100755 --- a/dselect/methods/multicd/install +++ b/dselect/methods/multicd/install @@ -295,8 +295,8 @@ done if ($?) { print "\nThe dpkg run produced errors. Please tell me, if I should\n", "continue with the next CD. [Y/n]: "; - $ans = <STDIN>; - exit 1 if $ans =~ /^n/i; + $answer = <STDIN>; + exit 1 if $answer =~ /^n/i; $ouch = $?; } } |