From 82ab3fd33fd9c149488c87eaf87825c765aaf852 Mon Sep 17 00:00:00 2001 From: absurdo Date: Mon, 27 Nov 2023 23:39:32 +0100 Subject: [PATCH] Fixes in linux --- vendor/phangoapp/leviathanutils/src/Linux.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vendor/phangoapp/leviathanutils/src/Linux.php b/vendor/phangoapp/leviathanutils/src/Linux.php index a3d1754..d4bc4d4 100644 --- a/vendor/phangoapp/leviathanutils/src/Linux.php +++ b/vendor/phangoapp/leviathanutils/src/Linux.php @@ -111,7 +111,7 @@ class Linux { ob_start(); - Linux::shell_command(['python3', '-c', '"import distro;print(distro.id())"']); + Linux::shell_command(['python3 -c "import distro;print(distro.id())"']); $distro=trim(ob_get_contents());