aboutsummaryrefslogtreecommitdiff
path: root/infra/cifuzz
diff options
context:
space:
mode:
authorjonathanmetzman <31354670+jonathanmetzman@users.noreply.github.com>2021-07-27 11:49:52 -0700
committerGitHub <noreply@github.com>2021-07-27 11:49:52 -0700
commit103e002ac1373b1a28e07d62c8e68969b32ff626 (patch)
tree1aa403cd231c20cb6b5cb37a49b6a291c5071a7e /infra/cifuzz
parent724eb98909cacdc132687c327e67ba41ad7edaa7 (diff)
downloadoss-fuzz-103e002ac1373b1a28e07d62c8e68969b32ff626.tar.gz
[cifuzz] Get rid of MANUAL_SRC_PATH (#6120)
Diffstat (limited to 'infra/cifuzz')
-rw-r--r--infra/cifuzz/config_utils.py4
1 files changed, 1 insertions, 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