summaryrefslogtreecommitdiff
path: root/dselect
diff options
context:
space:
mode:
authorGuillem Jover <guillem@debian.org>2018-08-28 02:33:52 +0200
committerGuillem Jover <guillem@debian.org>2018-08-30 03:14:09 +0200
commitaea951ca62fba38b8ce53e26db802a42304e0c27 (patch)
tree53d9e517ff940e3e4996398874b28b0b6cbe46fd /dselect
parente596defa91399a04792c7b37a6eb74a67cd10661 (diff)
downloaddpkg-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-xdselect/methods/multicd/install4
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 = $?;
}
}