Skip to content

Commit

Permalink
debug - prevent symlink looping
Browse files Browse the repository at this point in the history
  • Loading branch information
mvorisek committed Apr 20, 2024
1 parent dbabd2f commit 7ddbb80
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ExtensionInstaller.php
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ public function install(InstalledRepositoryInterface $repo, PackageInterface $pa
clearstatcache(true);
sleep(1);
var_dump('i: ' . INSTALL_PATH);
$phpFiles = getDirContents(INSTALL_PATH . '/..', 1);
$phpFiles = getDirContents(INSTALL_PATH . '/program', 1);
print_r($phpFiles);

require_once INSTALL_PATH . 'program/include/iniset.php';
Expand Down

0 comments on commit 7ddbb80

Please sign in to comment.