From 7ae8782e0785922c1e6d0888f32ce77d77753676 Mon Sep 17 00:00:00 2001 From: daniwe4 Date: Mon, 30 Sep 2024 12:01:56 +0200 Subject: [PATCH] master Pack: use correct pathes during import command --- app/src/Commands/Pack/ImportCommand.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/src/Commands/Pack/ImportCommand.php b/app/src/Commands/Pack/ImportCommand.php index 90e91cbe..21cb1887 100644 --- a/app/src/Commands/Pack/ImportCommand.php +++ b/app/src/Commands/Pack/ImportCommand.php @@ -287,7 +287,7 @@ public function execute(InputInterface $input, OutputInterface $output) : int $this->writer->endBlock(); $this->writer->beginBlock($output, "Apply ilias config"); - if ($this->filesystem->exists($path . "/var/www/html/setup/setup.php")) { + if ($this->filesystem->exists($path . "/volumes/ilias/setup/setup.php")) { $this->docker->executeCommand( $path, $instance, @@ -295,7 +295,7 @@ public function execute(InputInterface $input, OutputInterface $output) : int "-c", "php /var/www/html/setup/setup.php update /var/ilias/data/ilias-config.json -y" ); - } else if ($path . "/var/www/html/cli/setup.php") { + } else if ($path . "/volumes/ilias/cli/setup.php") { $this->docker->executeCommand( $path, $instance,