diff --git a/src/commands/sync.command.ts b/src/commands/sync.command.ts index c7b259f50f..d3a0483af1 100644 --- a/src/commands/sync.command.ts +++ b/src/commands/sync.command.ts @@ -9,7 +9,7 @@ export class SyncCommand { async run(cmd: program.Command): Promise { try { - const result = await this.syncService.fullSync(false); + const result = await this.syncService.fullSync(cmd.force || false); return Response.success(); } catch (e) { return Response.success(e.toString());