From 601f50f55e660dae3137c773c27d39aabbeeb0d2 Mon Sep 17 00:00:00 2001 From: Shivam Mathur Date: Thu, 19 Sep 2019 06:30:13 +0530 Subject: [PATCH] cleanup --- lib/install.js | 2 +- src/install.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/install.js b/lib/install.js index 35a4bf39..0ffe69a8 100644 --- a/lib/install.js +++ b/lib/install.js @@ -181,7 +181,7 @@ function createScript(filename, version) { if (error) { return console.log(error); } - console.log('The file was saved! \n' + script); + console.log('The file was saved!'); }); }); } diff --git a/src/install.ts b/src/install.ts index d56629d3..88dd088c 100644 --- a/src/install.ts +++ b/src/install.ts @@ -161,7 +161,7 @@ async function createScript(filename: string, version: string) { if (error) { return console.log(error); } - console.log('The file was saved! \n' + script); + console.log('The file was saved!'); }); }