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

getdeps: stop error with build --clean and --src-dir=.

Summary:
X-link: https://github.com/facebookincubator/zstrong/pull/1026

fix the error shown with build --clean and --src-dir=.

Reviewed By: jdelliot

Differential Revision: D64985193

fbshipit-source-id: f933adb45a7385b13965b89e421b4f9284cf0ecb
This commit is contained in:
Alex Hornby
2024-10-27 04:42:48 -07:00
committed by Facebook GitHub Bot
parent f6ce4adbc7
commit ee3c033775

View File

@@ -155,6 +155,9 @@ class LocalDirFetcher(object):
def get_src_dir(self):
return self.path
def clean(self) -> None:
pass
class SystemPackageFetcher(object):
def __init__(self, build_options, packages) -> None: