We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8bff8e0 commit 6891a70Copy full SHA for 6891a70
php/EE/Migration/Containers.php
@@ -28,11 +28,11 @@ public static function start_container_migration() {
28
$updated_images = [];
29
30
foreach ( $img_versions as $img => $version ) {
31
+ if ( 'easyengine/php5.6' === $img ) {
32
+ continue;
33
+ }
34
if ( $current_versions[ $img ] !== $version ) {
35
$updated_images[] = $img;
- if ( 'easyengine/php5.6' === $img ) {
- continue;
- }
36
self::pull_or_error( $img, $version );
37
}
38
0 commit comments