Merge "Allow relative path as 'local' argument" am: d29c0d62e3 am: 51b5b225ee

Original change: https://android-review.googlesource.com/c/platform/development/+/1784373

Change-Id: I2d0cf79e1b3253db03045692b8db82f3e67e3bb5
This commit is contained in:
Kiyoung Kim
2021-08-04 07:18:03 +00:00
committed by Automerger Merge Worker

View File

@@ -216,7 +216,7 @@ def main():
local = None
if args.local:
local = os.path.expanduser(args.local)
local = os.path.abspath(os.path.expanduser(args.local))
if local:
if args.build or args.branch: