fix: Typo in the export CLI error handling

pull/28/head
Boaz Poolman 2021-12-01 17:42:17 +01:00
parent eae79c1684
commit 6dd1f4556f
1 changed files with 1 additions and 1 deletions

View File

@ -142,7 +142,7 @@ const handleAction = async (syncType, skipConfirm, configType, partials) => {
await app.plugin('config-sync').service('main').exportSingleConfig(name, onSuccess); await app.plugin('config-sync').service('main').exportSingleConfig(name, onSuccess);
})); }));
} catch (e) { } 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}`);
} }
} }
} }