Skip to content

Commit

Permalink
Remove delete-after flag
Browse files Browse the repository at this point in the history
  • Loading branch information
vergissberlin authored Mar 26, 2021
1 parent 652d42b commit a7266b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Classes/Command/FetchWebsiteCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit a7266b1

Please sign in to comment.