[cifuzz] Get rid of MANUAL_SRC_PATH (#6120)

This commit is contained in:
jonathanmetzman 2021-07-27 11:49:52 -07:00 committed by GitHub
parent 724eb98909
commit 103e002ac1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 3 deletions

View File

@ -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