Skip to content

Commit

Permalink
Merge pull request #761 from SpeedyD/fix/command-extension-tracker-ba…
Browse files Browse the repository at this point in the history
…ckslashes

fix(commands): Extension Tracker not working on live due to backslash vs forwardslash
  • Loading branch information
itinerare authored Dec 25, 2023
2 parents a2a96a2 + ed7c898 commit 347030c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Console/Commands/UpdateExtensionTracker.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public function handle() {
$this->info('****************************');

$extendos = [];
foreach (glob('config\lorekeeper\ext-tracker\*.php') as $extension) {
foreach (glob('config/lorekeeper/ext-tracker/*.php') as $extension) {
$extendos[basename($extension, '.php')] = include $extension;
}

Expand Down

0 comments on commit 347030c

Please sign in to comment.