From eb9b5e418a4e68c9a2baa249be2c8a5a0cf9a6c4 Mon Sep 17 00:00:00 2001 From: Felix Rieseberg Date: Mon, 3 Sep 2018 19:47:07 -0700 Subject: [PATCH] :wrench: Log a newline --- src/download.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/download.ts b/src/download.ts index 18209ba..057610d 100644 --- a/src/download.ts +++ b/src/download.ts @@ -71,6 +71,9 @@ function downloadTools(installer: Installer): Promise { if (IS_DRY_RUN) { nuggetCallback(); } else { + // Log double newline because Nugget is the worst about overwriting + // output + log('\n'); nugget(installer.url, nuggetOptions, nuggetCallback); } });