We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 549818e commit e40abe3Copy full SHA for e40abe3
infra/build/functions/gcb.py
@@ -87,11 +87,9 @@ def exec_command_from_github(args):
87
# Set the branch so that the trial_build builds the projects from the PR
88
# branch.
89
command.extend(['--branch', branch])
90
- logging.info('Command: %s.', command)
91
-
92
command.extend(args)
93
94
- logging.info('Full command: %s.', command)
+ logging.info('Executing command: %s.', command)
95
96
if command_file == OSS_FUZZ_ON_DEMAND_COMMAND_STR.split(' ')[1]:
97
return oss_fuzz_on_demand.oss_fuzz_on_demand_main(command) == 0
0 commit comments