phpcs: More require/include is not a function
[lhc/web/wiklou.git] / maintenance / copyFileBackend.php
index fddc72c..1ccd121 100644 (file)
@@ -21,7 +21,7 @@
  * @ingroup Maintenance
  */
 
-require_once( __DIR__ . '/Maintenance.php' );
+require_once __DIR__ . '/Maintenance.php';
 
 /**
  * Copy all files in one container of one backend to another.
@@ -190,9 +190,9 @@ class CopyFileBackend extends Maintenance {
                                ? $fsFiles[$srcPath]
                                : $src->getLocalReference( array( 'src' => $srcPath, 'latest' => 1 ) );
                        if ( !$fsFile ) {
-                               if ( $src->fileExists( array( 'src' => $srcPath ) ) === false ) {
+                               $src->clearCache( array( $srcPath ) );
+                               if ( $src->fileExists( array( 'src' => $srcPath, 'latest' => 1 ) ) === false ) {
                                        $this->error( "$wikiId: File '$srcPath' was listed but does not exist." );
-                                       continue;
                                } else {
                                        $this->error( "$wikiId: Could not get local copy of $srcPath." );
                                }