f7a5e2fa4b
- actually do the first step instead of just logging a message, - make sure extension SDK bump gets picked up by the topic, - fix the resources_sdk_int in first step, and unfix in the second. Bug: 278246368 Fixes: 278246368 Test: local run Change-Id: I0d0f4e2ec7f0b584b9fc14a545cfec73a9fcbdea
16 lines
368 B
Bash
Executable file
16 lines
368 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -ex
|
|
|
|
function finalize_main_step1() {
|
|
local top="$(dirname "$0")"/../../../..
|
|
source $top/build/make/tools/finalization/environment.sh
|
|
|
|
if [ "$FINAL_STATE" = "unfinalized" ] ; then
|
|
# Build finalization artifacts.
|
|
source $top/build/make/tools/finalization/finalize-aidl-vndk-sdk-resources.sh
|
|
fi;
|
|
}
|
|
|
|
finalize_main_step1
|
|
|