From 6dd1f4556ff5b2e536a2a5becc4f336121241884 Mon Sep 17 00:00:00 2001 From: Boaz Poolman Date: Wed, 1 Dec 2021 17:42:17 +0100 Subject: [PATCH] fix: Typo in the export CLI error handling --- server/cli.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/cli.js b/server/cli.js index 78376ab..b21a210 100644 --- a/server/cli.js +++ b/server/cli.js @@ -142,7 +142,7 @@ const handleAction = async (syncType, skipConfirm, configType, partials) => { await app.plugin('config-sync').service('main').exportSingleConfig(name, onSuccess); })); } catch (e) { - console.log(`${chalk.bgRed.bold('[error]')} Something went wrong during the import. ${e}`); + console.log(`${chalk.bgRed.bold('[error]')} Something went wrong during the export. ${e}`); } } }