blob: 1dc015ee6c2d6d7c9f3e5e0fda6d288bf29d05b3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
--- extensions/vscode-api-tests/src/utils.ts.orig 2022-02-02 16:57:24 UTC
+++ extensions/vscode-api-tests/src/utils.ts
@@ -38,7 +38,7 @@ export async function deleteFile(file: vscode.Uri): Pr
}
export function pathEquals(path1: string, path2: string): boolean {
- if (process.platform !== 'linux') {
+ if (process.platform !== 'linux' && process.platform !== 'freebsd') {
path1 = path1.toLowerCase();
path2 = path2.toLowerCase();
}
|