From 6282e4e40190c328a4354e639dfa6b50ef8e0d57 Mon Sep 17 00:00:00 2001 From: Boaz Poolman Date: Wed, 10 Nov 2021 16:38:09 +0100 Subject: [PATCH] chore: Add full stop to 'no diff' notice for import/export commands --- server/cli.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/cli.js b/server/cli.js index e7755a7..3672778 100644 --- a/server/cli.js +++ b/server/cli.js @@ -71,7 +71,7 @@ const handleAction = async (type, skipConfirm) => { // No changes. if (isEmpty(diff.diff)) { - console.log(`${chalk.cyan('[notice]')} There are no changes to ${type}`); + console.log(`${chalk.cyan('[notice]')} There are no changes to ${type}.`); process.exit(0); }