ソースを参照

init: allow relative path on --reference argument

Change-Id: I41d6be6bc035fdddb5a27c072994439986d58d58
Signed-off-by: YOUNG HO CHA <ganadist@gmail.com>
YOUNG HO CHA 9 年 前
コミット
c79d3b8fd1
1 ファイル変更1 行追加1 行削除
  1. 1 1
      subcmds/init.py

+ 1 - 1
subcmds/init.py

@@ -401,7 +401,7 @@ to update the working directory files.
     git_require(MIN_GIT_VERSION, fail=True)
 
     if opt.reference:
-      opt.reference = os.path.expanduser(opt.reference)
+      opt.reference = os.path.abspath(os.path.expanduser(opt.reference))
 
     # Check this here, else manifest will be tagged "not new" and init won't be
     # possible anymore without removing the .repo/manifests directory.