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) => {