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

debug doesn't require build first

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

brainfart

Reviewed By: chadaustin

Differential Revision: D58200715

fbshipit-source-id: ccb02285e672e3e638e6eda92fc0610eb903cb69
This commit is contained in:
Simon Marlow
2024-06-06 07:50:05 -07:00
committed by Facebook GitHub Bot
parent a1690a2c30
commit 42696ea895

View File

@@ -921,9 +921,6 @@ class TestCmd(ProjectCmdBase):
) )
class DebugCmd(ProjectCmdBase): class DebugCmd(ProjectCmdBase):
def run_project_cmd(self, args, loader, manifest): def run_project_cmd(self, args, loader, manifest):
if not self.check_built(loader, manifest):
print("project %s has not been built" % manifest.name)
return 1
install_dirs = self.get_install_dirs(loader, manifest) install_dirs = self.get_install_dirs(loader, manifest)
builder = self.create_builder(loader, manifest) builder = self.create_builder(loader, manifest)
builder.debug(install_dirs, reconfigure=False) builder.debug(install_dirs, reconfigure=False)