1
0
mirror of https://github.com/facebook/proxygen.git synced 2025-08-07 07:02:53 +03:00

getdeps: include subdirectories when searching manifest

Summary: Make getdeps to look for subdirectories for manifest files.

Reviewed By: simpkins

Differential Revision: D17222388

fbshipit-source-id: e13503beccd9edf6d80f78fbc3238b2a8d2053dd
This commit is contained in:
Zeyi (Rice) Fan
2019-09-19 15:19:56 -07:00
committed by Facebook Github Bot
parent 56e9b68419
commit dd16065749
3 changed files with 66 additions and 30 deletions

View File

@@ -14,3 +14,8 @@ class TransientFailure(Exception):
infrastructure error """
pass
class ManifestNotFound(Exception):
def __init__(self, manifest_name):
super(Exception, self).__init__("Unable to find manifest '%s'" % manifest_name)