From ce6359673f405d5cdc20ba39340fea3828d635ca Mon Sep 17 00:00:00 2001 From: Alex Buynytskyy Date: Fri, 2 Dec 2022 05:19:07 +0000 Subject: [PATCH] Fix finalization script to upload abi prebuilts. Bug: 243966946 Test: run locally Change-Id: I160f822e120172fb64a8ae82a5ab8801f3d3f057 --- finalize-step-1.sh | 2 +- finalize-step-2.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/finalize-step-1.sh b/finalize-step-1.sh index 1ca98d4ada..20bc2bf5a7 100755 --- a/finalize-step-1.sh +++ b/finalize-step-1.sh @@ -26,7 +26,7 @@ function commit_changes() { repo start fina-step1 ; git add -A . ; git commit -m FINALIZATION_STEP_1_SCRIPT_COMMIT -m WILL_BE_AUTOMATICALLY_REVERTED ; - repo upload --cbr --no-verify -t -y . ; + repo upload --cbr --no-verify -o nokeycheck -t -y . ; git clean -fdx ; git reset --hard ; fi' } diff --git a/finalize-step-2.sh b/finalize-step-2.sh index 6e95ac462b..627153bc9e 100755 --- a/finalize-step-2.sh +++ b/finalize-step-2.sh @@ -26,7 +26,7 @@ function commit_changes() { repo start fina-step1 ; git add -A . ; git commit -m FINALIZATION_STEP_2_SCRIPT_COMMIT -m WILL_BE_AUTOMATICALLY_REVERTED ; - repo upload --cbr --no-verify -t -y . ; + repo upload --cbr --no-verify -o nokeycheck -t -y . ; git clean -fdx ; git reset --hard ; fi' }