Skip to content

Commit e3d7e62

Browse files
authored
Git - Remove localization from askpass-main (microsoft#165129)
Remove localization from askpass as it runs in a separate process
1 parent 8b79a00 commit e3d7e62

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

extensions/git/src/askpass-main.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,10 @@
44
*--------------------------------------------------------------------------------------------*/
55

66
import * as fs from 'fs';
7-
import { l10n } from 'vscode';
87
import { IPCClient } from './ipc/ipcClient';
98

109
function fatal(err: any): void {
11-
console.error(l10n.t('Missing or invalid credentials.'));
10+
console.error('Missing or invalid credentials.');
1211
console.error(err);
1312
process.exit(1);
1413
}

0 commit comments

Comments
 (0)