From 975dfef76f8831055c6aa0c6c89d778b8dea6dd2 Mon Sep 17 00:00:00 2001 From: lgromero Date: Tue, 25 Mar 2025 08:20:30 +0100 Subject: [PATCH] fix typo in composer --- installer/ogboot_installer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/installer/ogboot_installer.py b/installer/ogboot_installer.py index f001b2a..6c64f74 100755 --- a/installer/ogboot_installer.py +++ b/installer/ogboot_installer.py @@ -354,7 +354,7 @@ def og_boot_composer_install(): ) # Ejecutar Composer como el usuario 'opengnsys' para actualizar el paquete doctrine/dbal - result = subprocess.run(["sudo", "-u", "opengnsys", INSTALL_OGBOOT_TARGET+"/bin/api/composer.phar", "update", "doctrine/dbal", "--working-dir", api_dir]) + result = subprocess.run(["sudo", "-u", "opengnsys", INSTALL_OGBOOT_TARGET+"/api/bin/composer.phar", "update", "doctrine/dbal", "--working-dir", api_dir]) if result.returncode != 0: logger.error("Error updating doctrine/dbal package using Composer") return