Skip to content

Commit

Permalink
fix: don't load commands in exported site profiles
Browse files Browse the repository at this point in the history
  • Loading branch information
BernhardBaumrock committed Mar 16, 2024
1 parent 7bb82b1 commit 4ce3253
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions Application.php
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,7 @@ public function findCommandFiles()

// skip some files and folders
if (strpos($info->getFilename(), ".") === 0) continue;
if (strpos($filename, "/export-profile/")) continue;
if (strpos($filename, "/vendor/")) continue;
if (strpos($filename, "/lib/")) continue;
if (strpos($filename, "/tracy-")) continue;
Expand Down

0 comments on commit 4ce3253

Please sign in to comment.