From bfdca950c60f6012cecf99a82173926b98e2fef0 Mon Sep 17 00:00:00 2001 From: Yves Gurcan Date: Wed, 26 Apr 2023 08:15:12 -0700 Subject: [PATCH] Fixed undefined assetOverwrites variable (#49) Closes #48. --- lib/content.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/content.js b/lib/content.js index 06b35e1..b22c2d8 100644 --- a/lib/content.js +++ b/lib/content.js @@ -133,7 +133,7 @@ const transferContent = async (config) => { }); // just a small helper to add a line break after the inquiry - const br = diffConflicts && (Object.keys(assetOverwrites).length || Object.keys(entryOverwrites).length) ? '\n' : ''; + const br = diffConflicts && Object.keys(entryOverwrites).length ? '\n' : ''; if (assets.length === 0 && entries.length === 0) { console.log(chalk.green(`${br}All done`), '🚀');