1
0
Fork 0
pull/519/head
Jordi Boggiano 2012-04-01 20:47:31 +02:00
parent e36dfb150c
commit 3210da0b84
1 changed files with 3 additions and 6 deletions

View File

@ -135,9 +135,8 @@ class ConsoleIO implements IOInterface
return $value;
}
// for other OS with shell_exec (hide the answer)
$command = "/usr/bin/env bash -c 'echo OK'";
if (rtrim(shell_exec($command)) === 'OK') {
// handle other OSs with bash if available to hide the answer
if ('OK' === rtrim(shell_exec("/usr/bin/env bash -c 'echo OK'"))) {
$this->write($question, false);
$command = "/usr/bin/env bash -c 'read -s mypassword && echo \$mypassword'";
$value = rtrim(shell_exec($command));
@ -146,9 +145,7 @@ class ConsoleIO implements IOInterface
return $value;
}
// for other OS without shell_exec (does not hide the answer)
$this->write('');
// not able to hide the answer, proceed with normal question handling
return $this->ask($question);
}