From 04c738d9bc382dd7ebbc6415d7b03e99bc1434b0 Mon Sep 17 00:00:00 2001 From: jonathanmetzman <31354670+jonathanmetzman@users.noreply.github.com> Date: Mon, 1 Aug 2022 16:04:31 -0700 Subject: [PATCH] Fix trial builds (#8114) --- infra/build/functions/ci_trial_build.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/infra/build/functions/ci_trial_build.py b/infra/build/functions/ci_trial_build.py index 0ad8ede36..abb494e5f 100644 --- a/infra/build/functions/ci_trial_build.py +++ b/infra/build/functions/ci_trial_build.py @@ -69,8 +69,7 @@ def exec_command_from_github(pull_request_number, branch): # Set the branch so that the trial_build builds the projects from the PR # branch. - command.append(f' --branch {branch}') - + command.extend(['--branch', branch]) logging.info('Command: %s.', command) return trial_build.trial_build_main(command, local_base_build=False)