testing [skip ci]

This commit is contained in:
Shivam Mathur
2026-05-13 23:44:13 +05:30
parent bc5c9f7652
commit 97c274d72a
42 changed files with 183 additions and 183 deletions

View File

@@ -284,10 +284,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');
}