diff --git a/packages/core/strapi/lib/commands/transfer/utils.js b/packages/core/strapi/lib/commands/transfer/utils.js index 60a9947937..a76060c5b3 100644 --- a/packages/core/strapi/lib/commands/transfer/utils.js +++ b/packages/core/strapi/lib/commands/transfer/utils.js @@ -91,11 +91,13 @@ const createStrapiInstance = async (logLevel = 'error') => { const transferDataTypes = Object.keys(TransferGroupPresets); const excludeOption = new Option( '--exclude ', - 'Exclude this data.' + `Exclude this data. Options used here override --only. Available types: ${transferDataTypes.join( + ',' + )}` ).argParser(getParseListWithChoices(transferDataTypes, 'Invalid options for "exclude"')); const onlyOption = new Option( '--only ', - 'Include only this data.' + `Include only this data. Available types: ${transferDataTypes.join(',')}` ).argParser(getParseListWithChoices(transferDataTypes, 'Invalid options for "only"')); module.exports = {