1
0
Fork 0

Merge pull request #232 from robywan/hidden-password-fix

Fixed detection of hidden password input capability
pull/238/merge
Jordi Boggiano 2012-01-21 11:34:25 -08:00
commit 5ce9de422b
1 changed files with 1 additions and 2 deletions

View File

@ -139,9 +139,8 @@ class ConsoleIO implements IOInterface
}
// for other OS with shell_exec (hide the answer)
$command = "/usr/bin/env bash -c 'echo OK'";
if (rtrim(shell_exec($command)) === 'OK') {
$command = "/usr/bin/env bash -c 'echo OK'";
$this->write($question, false);
$command = "/usr/bin/env bash -c 'read -s mypassword && echo \$mypassword'";