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!'); }); }