Release v1-verbose

This commit is contained in:
Shivam Mathur
2022-04-10 03:10:28 +05:30
parent 28c92ba4ee
commit bc71c880ee
8 changed files with 68 additions and 68 deletions

4
dist/index.js vendored
View File

@ -1023,10 +1023,10 @@ exports.getExtensionPrefix = getExtensionPrefix;
async function suppressOutput(os_version) {
switch (os_version) {
case 'win32':
return ' >$null 2>&1';
return ' ';
case 'linux':
case 'darwin':
return ' >/dev/null 2>&1';
return ' ';
default:
return await log('Platform ' + os_version + ' is not supported', os_version, 'error');
}