Merge "check_ota_package_signature.py: Set up PYTHONPATH."

am: 9f686938da

Change-Id: Ie84a386dd6acc44fd1fba987e8f0a5703248cd59
This commit is contained in:
Tao Bao 2017-11-21 21:40:13 +00:00 committed by android-build-merger
commit 51f5d3360e
1 changed files with 9 additions and 1 deletions

View File

@ -22,7 +22,10 @@ from __future__ import print_function
import argparse import argparse
import common import common
import os
import os.path
import re import re
import site
import subprocess import subprocess
import sys import sys
import tempfile import tempfile
@ -32,7 +35,12 @@ from hashlib import sha1
from hashlib import sha256 from hashlib import sha256
# 'update_payload' package is under 'system/update_engine/scripts/', which # 'update_payload' package is under 'system/update_engine/scripts/', which
# should to be included in PYTHONPATH. # should be included in PYTHONPATH. Try to set it up automatically if
# if ANDROID_BUILD_TOP is available.
top = os.getenv('ANDROID_BUILD_TOP')
if top:
site.addsitedir(os.path.join(top, 'system', 'update_engine', 'scripts'))
from update_payload.payload import Payload from update_payload.payload import Payload
from update_payload.update_metadata_pb2 import Signatures from update_payload.update_metadata_pb2 import Signatures