Skip to content

Commit

Permalink
refactor: update file permissions for multiple files
Browse files Browse the repository at this point in the history
- Changed file permissions for various files across the project
- Updated file mode to improve security and accessibility
  • Loading branch information
zds-s committed Oct 23, 2024
1 parent 52b74f0 commit 8665f29
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/AppStore/src/Plugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ public static function install(string $path): void
* @var SplFileInfo $file
*/
$relativeFilePath = $file->getRelativePathname();
FileSystemUtils::copy($pluginPath . '/web/' . $relativeFilePath, $frontDirectory . $relativeFilePath);
FileSystemUtils::copy($pluginPath . '/web/' . $relativeFilePath, $frontDirectory . '/src/plugins/' . $path . \DIRECTORY_SEPARATOR . $relativeFilePath);
}
}

Expand Down

0 comments on commit 8665f29

Please sign in to comment.