From 3da4175bd2d8c58b24226b720488629dec5d7b30 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Tue, 4 Apr 2017 21:28:41 +0200 Subject: [PATCH] Fix linux string --- System/OperatingSystem.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/System/OperatingSystem.php b/System/OperatingSystem.php index d46bc8bdb..7eb5a80e5 100644 --- a/System/OperatingSystem.php +++ b/System/OperatingSystem.php @@ -44,7 +44,7 @@ final class OperatingSystem return SystemType::OSX; } elseif(stristr(PHP_OS, 'WIN') !== false) { return SystemType::WIN; - } elseif(stristr(PHP_OS, 'LINIX') !== false) { + } elseif(stristr(PHP_OS, 'LINUX') !== false) { return SystemType::LINUX; }