fix(cli): dry run being inaccurate (#9088)

This commit is contained in:
Mert 2024-04-25 21:14:48 -04:00 committed by GitHub
parent c9dcb5c624
commit d52ed51aab
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 158 additions and 5 deletions

View file

@ -60,7 +60,8 @@ program
.addOption(
new Option('-n, --dry-run', "Don't perform any actions, just show what will be done")
.env('IMMICH_DRY_RUN')
.default(false),
.default(false)
.conflicts('skipHash'),
)
.addOption(
new Option('-c, --concurrency <number>', 'Number of assets to upload at the same time')