From 2e37493098d201d34d32683b9f7a3ac361458210 Mon Sep 17 00:00:00 2001 From: Andi-Bogdan Postelnicu Date: Mon, 9 Dec 2019 15:23:12 +0000 Subject: Bug 1598485 - Exclude files that are not part of the nss repository from the analysis artifact. r=jcj Differential Revision: https://phabricator.services.mozilla.com/D55963 --- mach | 3 +++ 1 file changed, 3 insertions(+) (limited to 'mach') diff --git a/mach b/mach index feae103f9..b484e1fa4 100755 --- a/mach +++ b/mach @@ -244,6 +244,9 @@ class coverityAction(argparse.Action): print('Skipping CID: {0} from file: {1} since it\'s not related with the current patch.'.format( issue['stateOnServer']['cid'], issue['strippedMainEventFilePathname'])) continue + # If path does not start with `cwd` skip it + if not path.startswith(cwd): + continue path = relpath(path) if path in files_list: files_list[path]['warnings'].append(build_element(issue)) -- cgit v1.2.1