File tree 3 files changed +5
-9
lines changed
3 files changed +5
-9
lines changed Original file line number Diff line number Diff line change @@ -203,9 +203,7 @@ const migrateToContentStorage = async (config) => {
203
203
return version && parseInt ( version , 10 ) >= parseInt ( num , 10 ) ;
204
204
} ) ;
205
205
206
- console . log (
207
- `\nFound ${ pc . green ( filtered . length ) } executed migrations in environment ${ pc . green ( environmentId ) } `
208
- ) ;
206
+ console . log ( `\nFound ${ pc . green ( filtered . length ) } executed migrations in environment ${ pc . green ( environmentId ) } ` ) ;
209
207
210
208
const bar = new cliProgress . SingleBar (
211
209
{ format : 'Adding content-entries: {value}/{total} | ETA: {eta}s' } ,
Original file line number Diff line number Diff line change @@ -146,9 +146,9 @@ const transferContent = async (config) => {
146
146
}
147
147
148
148
console . log (
149
- `${ br } Transfering ${ pc . cyan ( `${ entries . length } Entries` ) } and ${ pc . cyan (
150
- ` ${ assets . length } Assets`
151
- ) } from ${ pc . cyan ( sourceEnvironmentId ) } to ${ pc . cyan ( destEnvironmentId ) } `
149
+ `${ br } Transfering ${ pc . cyan ( `${ entries . length } Entries` ) } and ${ pc . cyan ( ` ${ assets . length } Assets` ) } from ${ pc . cyan (
150
+ sourceEnvironmentId
151
+ ) } to ${ pc . cyan ( destEnvironmentId ) } `
152
152
) ;
153
153
154
154
proceed = await confirm ( config ) ;
Original file line number Diff line number Diff line change @@ -187,9 +187,7 @@ const runMigrations = async (config) => {
187
187
console . log ( error . message ) ;
188
188
throw error ;
189
189
}
190
- console . log (
191
- `Found ${ pc . green ( migrations . length ) } unexecuted migrations in environment ${ pc . green ( environmentId ) } `
192
- ) ;
190
+ console . log ( `Found ${ pc . green ( migrations . length ) } unexecuted migrations in environment ${ pc . green ( environmentId ) } ` ) ;
193
191
194
192
const proceed = migrations . length === 0 || ( await confirm ( config ) ) ;
195
193
if ( ! proceed ) {
You can’t perform that action at this time.
0 commit comments