We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent de2c58b commit 58193a5Copy full SHA for 58193a5
Classes/Console/Command/RsyncCommand.php
@@ -98,6 +98,10 @@ protected function getRsyncFolders(): array {
98
$folders[] = $configuration['basePath'];
99
}
100
101
+ $folders = array_filter($folders, function(string $path): bool {
102
+ return !str_starts_with($path, 'typo3conf/ext/');
103
+ });
104
+
105
if (!$folders) {
106
// check if fileadmin exists and use that
107
if (is_dir(Environment::getPublicPath() . '/fileadmin/')) {
0 commit comments