From bb50adec3132556431ce683871a5ce3e44c6ad72 Mon Sep 17 00:00:00 2001 From: Kelvin Schoofs Date: Tue, 9 Feb 2021 15:32:06 +0100 Subject: [PATCH] Add '/app/src/main/AndroidManifest.xml' to IGNORE_NOT_FOUND --- src/sshFileSystem.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/sshFileSystem.ts b/src/sshFileSystem.ts index 9324d17..2aa4cfa 100644 --- a/src/sshFileSystem.ts +++ b/src/sshFileSystem.ts @@ -19,6 +19,7 @@ const IGNORE_NOT_FOUND: string[] = [ '/.git/', '/node_modules', '/pom.xml', + '/app/src/main/AndroidManifest.xml', ]; function shouldIgnoreNotFound(path: string) { return IGNORE_NOT_FOUND.some(entry => entry === path || entry.endsWith('/') && path.startsWith(entry));