Fix uninit warnings when "proceed w/out lockfile" check is headless.

wilder
Michael Pyne 10 years ago
parent 68a5b27f4b
commit 76838b6ba4
  1. 2
      modules/ksb/BuildContext.pm

@ -381,7 +381,7 @@ sub takeLock
print ksb::Debug::colorize(" r[*y[*r[*] kdesrc-build appears to be running. Do you want to:\n");
print ksb::Debug::colorize(" (b[Q])uit, (b[P])roceed anyways?: ");
my $choice = <STDIN>;
my $choice = <STDIN> // '';
chomp $choice;
if (lc $choice ne 'p')

Loading…
Cancel
Save