[Console] Do not check for "stty" using "exec" if that function is disabled

This commit is contained in:
Michael Voříšek 2020-07-01 12:07:23 +02:00 committed by Nicolas Grekas
parent 91f30e0b62
commit 02124b6b3b
1 changed files with 5 additions and 0 deletions

View File

@ -66,6 +66,11 @@ class Terminal
return self::$stty;
}
// skip check if exec function is disabled
if (!\function_exists('exec')) {
return false;
}
exec('stty 2>&1', $output, $exitcode);
return self::$stty = 0 === $exitcode;