From 111372edc107903c47ca8fbfd44dd3a7a031a206 Mon Sep 17 00:00:00 2001 From: Daniele Ricci Date: Mon, 24 Jul 2023 04:06:27 +0200 Subject: [PATCH] fix(cli): fix wording in usage guide (#3378) --- cli/src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/src/index.ts b/cli/src/index.ts index 2c48a2c696..be7ba17e86 100644 --- a/cli/src/index.ts +++ b/cli/src/index.ts @@ -36,7 +36,7 @@ program ) .addOption(new Option('-i, --ignore [paths...]', 'Paths to ignore').env('IMMICH_IGNORE_PATHS').default(false)) .addOption(new Option('--no-read-only', 'Import files without read-only protection, allowing Immich to manage them')) - .argument('[paths...]', 'One or more paths to assets to be uploaded') + .argument('[paths...]', 'One or more paths to assets to be imported') .action((paths, options) => { options.import = true; options.excludePatterns = options.ignore;