diff --git a/Classes/Command/FetchWebsiteCommand.php b/Classes/Command/FetchWebsiteCommand.php index 59ae54a..e54d37d 100644 --- a/Classes/Command/FetchWebsiteCommand.php +++ b/Classes/Command/FetchWebsiteCommand.php @@ -42,7 +42,7 @@ protected function execute(InputInterface $input, OutputInterface $output) exec('mkdir ' . $fetchDirectory); // Fetch website recursively - exec('wget --delete-after -q -r ' . $input->getArgument('baseUrl') . ' -R "' . self::REJECT . '" -P ' . $fetchDirectory, $output, $status); + exec('wget -q -r ' . $input->getArgument('baseUrl') . ' -R "' . self::REJECT . '" -P ' . $fetchDirectory, $output, $status); return $status; }