Merge "Allow relative path as 'local' argument" am: d29c0d62e3 am: 51b5b225ee am: 9f5a34ac04 am: 77bab42e5d

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

Change-Id: Ic0b84f0b683a73b317945507335843cd2ecf1139
This commit is contained in:
Kiyoung Kim
2021-08-04 07:52:01 +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: