You've already forked joplin
mirror of
https://github.com/laurent22/joplin.git
synced 2025-06-15 23:00:36 +02:00
Chore: Apply eslint rules
This commit is contained in:
@ -21,13 +21,13 @@ class MigrationService extends BaseService {
|
||||
const migrations = await Migration.migrationsToDo();
|
||||
|
||||
for (const migration of migrations) {
|
||||
this.logger().info('Running migration: ' + migration.number);
|
||||
this.logger().info(`Running migration: ${migration.number}`);
|
||||
|
||||
try {
|
||||
await this.runScript(migration.number);
|
||||
await Migration.delete(migration.id);
|
||||
} catch (error) {
|
||||
this.logger().error('Cannot run migration: ' + migration.number, error);
|
||||
this.logger().error(`Cannot run migration: ${migration.number}`, error);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user