aboutsummaryrefslogtreecommitdiff
path: root/infra/cifuzz/build_fuzzers.py
diff options
context:
space:
mode:
authorOliver Chang <oliverchang@users.noreply.github.com>2021-07-21 15:32:32 +1000
committerGitHub <noreply@github.com>2021-07-21 05:32:32 +0000
commitc7cab23c207288caa107a5cc6bb33f715929ecb6 (patch)
tree43b09b3f42d6eb8d337341a26fa605ab74d37d6d /infra/cifuzz/build_fuzzers.py
parent857e9c27d02213050af6ebd263ac8726bfecc7d5 (diff)
downloadoss-fuzz-c7cab23c207288caa107a5cc6bb33f715929ecb6.tar.gz
Make oss-fuzz-project-name optional. (#6071)
Also rename code uses from `project_name` to `oss_fuzz_project_name`, to be more explicit, and use it to determine whether or not we're running an OSS-Fuzz project or not. For external fuzzing #6051.
Diffstat (limited to 'infra/cifuzz/build_fuzzers.py')
-rw-r--r--infra/cifuzz/build_fuzzers.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/infra/cifuzz/build_fuzzers.py b/infra/cifuzz/build_fuzzers.py
index 931784a21..892d51abd 100644
--- a/infra/cifuzz/build_fuzzers.py
+++ b/infra/cifuzz/build_fuzzers.py
@@ -89,7 +89,7 @@ class Builder: # pylint: disable=too-many-instance-attributes
self.handle_msan_prebuild(docker_container)
docker_args.extend([
- docker.get_project_image_name(self.config.project_name),
+ docker.get_project_image_name(self.config.oss_fuzz_project_name),
'/bin/bash',
'-c',
])