From fcebd8ac0ba7da27d3274d044165e3267e757daf Mon Sep 17 00:00:00 2001 From: absurdo Date: Sat, 25 Nov 2023 00:15:01 +0100 Subject: [PATCH] Fixes in composer for not depend of symfony-process --- 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 57bb578..b4b8530 100644 --- a/vendor/phangoapp/leviathanutils/src/Linux.php +++ b/vendor/phangoapp/leviathanutils/src/Linux.php @@ -67,7 +67,7 @@ class Linux { ob_start(); - Linux::shell_command(['python', '-c', '"import distro;print(distro.id())"']); + Linux::shell_command(['python3', '-c', '"import distro;print(distro.id())"']); $distro=trim(ob_get_contents());