From 63d34a7702cd9852701821d1db7b58e03a81900c Mon Sep 17 00:00:00 2001 From: Ben Irvin Date: Wed, 8 Mar 2023 10:38:37 +0100 Subject: [PATCH] update error text --- packages/core/strapi/bin/strapi.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/core/strapi/bin/strapi.js b/packages/core/strapi/bin/strapi.js index c2f33cabfc..b147ec0f4d 100755 --- a/packages/core/strapi/bin/strapi.js +++ b/packages/core/strapi/bin/strapi.js @@ -320,7 +320,7 @@ program }, ]); if (!answers.fromToken?.length) { - exitWith(1, 'No source token entered, aborting transfer.'); + exitWith(1, 'No token provided for remote source, aborting transfer.'); } thisCommand.opts().fromToken = answers.fromToken; } @@ -343,7 +343,7 @@ program }, ]); if (!answers.toToken?.length) { - exitWith(1, 'No destination token entered, aborting transfer.'); + exitWith(1, 'No token provided for remote destination, aborting transfer.'); } thisCommand.opts().toToken = answers.toToken; }