This commit is contained in:
Shivam Mathur 2019-09-19 06:30:13 +05:30
parent e71c06a64f
commit 601f50f55e
2 changed files with 2 additions and 2 deletions

View File

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

View File

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