mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
BUGFIX: posix_isatty sometimes returns a benign error
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@64466 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
parent
d3f6b8ec9e
commit
f49e2c1ca6
@ -7,7 +7,7 @@
|
||||
class SSCli extends Object {
|
||||
static function supports_colour() {
|
||||
if(!defined('STDOUT')) define('STDOUT', fopen("php://stdout","w"));
|
||||
return posix_isatty(STDOUT);
|
||||
return @posix_isatty(STDOUT);
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user