Skip to content

Commit

Permalink
Don't assume that file binary exists on *nix OS
Browse files Browse the repository at this point in the history
Certain lightweight distributions such as Alpine Linux (popular for smaller Docker images) do not include it by default.
  • Loading branch information
teohhanhui committed Apr 17, 2018
1 parent 1067468 commit e2c1f24
Showing 1 changed file with 15 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,21 @@ public function __construct($cmd = 'file -b --mime %s 2>/dev/null')
*/
public static function isSupported()
{
return '\\' !== DIRECTORY_SEPARATOR && function_exists('passthru') && function_exists('escapeshellarg');
static $supported = null;

if (null !== $supported) {
return $supported;
}

if ('\\' === DIRECTORY_SEPARATOR || !function_exists('passthru') || !function_exists('escapeshellarg')) {
return $supported = false;
}

ob_start();
passthru('command -v file', $exitStatus);
$binPath = trim(ob_get_clean());

return $supported = 0 === $exitStatus && '' !== $binPath;
}

/**
Expand Down

0 comments on commit e2c1f24

Please sign in to comment.