chore: Add full stop to 'no diff' notice for import/export commands

pull/26/head
Boaz Poolman 2021-11-10 16:38:09 +01:00
parent f408122d82
commit 6282e4e401
1 changed files with 1 additions and 1 deletions

View File

@ -71,7 +71,7 @@ const handleAction = async (type, skipConfirm) => {
// No changes. // No changes.
if (isEmpty(diff.diff)) { 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); process.exit(0);
} }