Jordi Boggiano пре 13 година
родитељ
комит
3210da0b84
1 измењених фајлова са 3 додато и 6 уклоњено
  1. 3 6
      src/Composer/IO/ConsoleIO.php

+ 3 - 6
src/Composer/IO/ConsoleIO.php

@@ -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);
     }