From 103e002ac1373b1a28e07d62c8e68969b32ff626 Mon Sep 17 00:00:00 2001 From: jonathanmetzman <31354670+jonathanmetzman@users.noreply.github.com> Date: Tue, 27 Jul 2021 11:49:52 -0700 Subject: [PATCH] [cifuzz] Get rid of MANUAL_SRC_PATH (#6120) --- infra/cifuzz/config_utils.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/infra/cifuzz/config_utils.py b/infra/cifuzz/config_utils.py index c60c3fc11..6493d7f92 100644 --- a/infra/cifuzz/config_utils.py +++ b/infra/cifuzz/config_utils.py @@ -45,9 +45,7 @@ def _is_dry_run(): def get_project_src_path(workspace): """Returns the manually checked out path of the project's source if specified or None.""" - # TODO(metzman): Get rid of MANUAL_SRC_PATH when Skia switches to - # PROJECT_SRC_PATH. - path = os.getenv('PROJECT_SRC_PATH', os.getenv('MANUAL_SRC_PATH')) + path = os.getenv('PROJECT_SRC_PATH') if not path: logging.debug('No PROJECT_SRC_PATH.') return path