diff --git a/lib/Command/ExApp/Deploy.php b/lib/Command/ExApp/Deploy.php index 2dd3a9da..3efa7db4 100644 --- a/lib/Command/ExApp/Deploy.php +++ b/lib/Command/ExApp/Deploy.php @@ -91,7 +91,7 @@ protected function execute(InputInterface $input, OutputInterface $output): int return 2; } - $infoXml = simplexml_load_file($pathToInfoXml); + $infoXml = simplexml_load_string(file_get_contents($pathToInfoXml)); if ($infoXml === false) { $output->writeln(sprintf('Failed to load info.xml from %s', $pathToInfoXml)); return 2;