Merge pull request 'ignore .gitkeep files in migrations folder' (!2) from fix-migration into master
All checks were successful
rvr-nextgen/pipeline/head This commit looks good

Reviewed-on: #2
This commit is contained in:
Bence Pőcze 2023-04-08 02:54:09 +02:00 committed by Gitea
commit 545e5b39ac
Signed by: Gitea
GPG Key ID: 7B89B83EED9AD2C6

View File

@ -96,7 +96,7 @@ class MigrateDatabaseCommand extends Command
while ($file = readdir($dir)) {
$filePath = $path . '/' . $file;
if (!is_file($filePath) || in_array(pathinfo($file, PATHINFO_FILENAME), $done)) {
if (!is_file($filePath) || pathinfo($file, PATHINFO_FILENAME) == '.gitkeep' || in_array(pathinfo($file, PATHINFO_FILENAME), $done)) {
continue;
}