From 244f8b704ef2f4776607ed89333152e4a0cf8d8c Mon Sep 17 00:00:00 2001 From: Ben Irvin Date: Wed, 25 Jan 2023 13:29:16 +0100 Subject: [PATCH] fix help text --- packages/core/strapi/lib/commands/transfer/utils.js | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/packages/core/strapi/lib/commands/transfer/utils.js b/packages/core/strapi/lib/commands/transfer/utils.js index 7d219c7fe6..188d13d4cb 100644 --- a/packages/core/strapi/lib/commands/transfer/utils.js +++ b/packages/core/strapi/lib/commands/transfer/utils.js @@ -103,14 +103,12 @@ const transferDataTypes = Object.keys(TransferGroupPresets); const excludeOption = new Option( '--exclude ', - `Exclude this data. Options used here override --only. Available types: ${transferDataTypes.join( - ',' - )}` + `Exclude data using comma-separated types. Available types: ${transferDataTypes.join(',')}` ).argParser(getParseListWithChoices(transferDataTypes, 'Invalid options for "exclude"')); const onlyOption = new Option( '--only ', - `Include only this data (plus schemas). Available types: ${transferDataTypes.join(',')}` + `Include only these types of data (plus schemas). Available types: ${transferDataTypes.join(',')}` ).argParser(getParseListWithChoices(transferDataTypes, 'Invalid options for "only"')); const validateExcludeOnly = (command) => {