Merge "Allow relative path as 'local' argument"

This commit is contained in:
Kiyoung Kim
2021-08-04 06:53:00 +00:00
committed by Gerrit Code Review

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: