Skip to content

Commit

Permalink
Merge pull request #10505 from nextcloud/bug/10504/itinerary-path
Browse files Browse the repository at this point in the history
fix: wrong path for itinerary executable
  • Loading branch information
kesselb authored Dec 16, 2024
2 parents 5441b8b + 43ed1ca commit bd0c6fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Migration/MakeItineraryExtractorExecutable.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ class MakeItineraryExtractorExecutable implements IRepairStep {

public function __construct(LoggerInterface $logger,
?string $file = null) {
$this->file = $file ?? __DIR__ . '/../../vendor/christophwurst/kitinerary-bin/bin/kitinerary-extractor';
$this->file = $file ?? (__DIR__ . '/../../vendor/nextcloud/kitinerary-bin/bin/kitinerary-extractor');
$this->logger = $logger;
}

Expand Down

0 comments on commit bd0c6fb

Please sign in to comment.