Release v2-verbose

This commit is contained in:
Shivam Mathur
2026-06-08 21:15:20 +05:30
parent f3e473d116
commit 420be8cbcd
42 changed files with 182 additions and 182 deletions
+2 -2
View File
@@ -323,10 +323,10 @@ export async function getExtensionPrefix(extension: string): Promise<string> {
export async function suppressOutput(os: string): Promise<string> {
switch (os) {
case 'win32':
return ' >$null 2>&1';
return ' ';
case 'linux':
case 'darwin':
return ' >/dev/null 2>&1';
return ' ';
default:
return await log('Platform ' + os + ' is not supported', os, 'error');
}