From dd629e54f5213f1ae31b984682a1a3af76985ee0 Mon Sep 17 00:00:00 2001 From: lgromero Date: Mon, 8 Jul 2024 14:30:11 +0200 Subject: [PATCH] refs #477 fix index error --- 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 8e6cafd..48ad3e3 100755 --- a/installer/ogboot_installer.py +++ b/installer/ogboot_installer.py @@ -240,7 +240,7 @@ def generate_config_url(): def downloadComposer(): global WORKDIR, INSTALL_OGBOOT_TARGET - _______logger.info("Downloading composer.phar...") + logger.info("Downloading composer.phar...") os.makedirs(os.path.join(WORKDIR, "ogboot", "bin"), mode=0o750, exist_ok=True) subprocess.run(["curl", "-sS", "-o", os.path.join(WORKDIR, "ogboot", "bin", "composer.phar"), "https://getcomposer.org/installer"], check=True) if not os.path.isfile(os.path.join(WORKDIR, "ogboot", "bin", "composer.phar")):