diff options
author | Jiyong Park <jiyong@google.com> | 2018-11-20 10:02:13 +0900 |
---|---|---|
committer | Jiyong Park <jiyong@google.com> | 2018-11-20 10:02:54 +0900 |
commit | 847d7597591368efe64191185ec17d6ec2ea653d (patch) | |
tree | 3e492fa8596a51ead600f1454bead1912b7ddbdc /apexer/apexer.py | |
parent | 1ce514f4c147bbea06233664811d5a8eb9491970 (diff) |
Remove buildspam for apexer
Bug: 119768180
Test: m apex.test
[ 99% 5758/5761] //system/apex:apex.test apex [common]
[100% 5761/5761] Install: out/target/product/walleye/system/apex/apex.test.apex
Change-Id: Ia7bb715cbecdda4e11691e11d94e130f084d0012
Diffstat (limited to 'apexer/apexer.py')
-rw-r--r-- | apexer/apexer.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/apexer/apexer.py b/apexer/apexer.py index 8b57636..7ff0c46 100644 --- a/apexer/apexer.py +++ b/apexer/apexer.py @@ -45,7 +45,6 @@ Aborting. tool_path = os.environ['APEXER_TOOL_PATH'] tool_path_list = tool_path.split(":") -print "Using tool_path_list=" + str(tool_path_list) def ParseArgs(argv): parser = argparse.ArgumentParser(description='Create an APEX file') @@ -147,6 +146,9 @@ def CreateApex(args, work_dir): if not ValidateArgs(args): return False + if args.verbose: + print "Using tools from " + str(tool_path_list) + try: with open(args.manifest) as f: manifest = json.load(f) |