From ee907623888edbe6db99a870285817c51e904cad Mon Sep 17 00:00:00 2001 From: Toshio Kuratomi Date: Wed, 6 Apr 2016 14:03:17 -0700 Subject: git still needs to have abspath applied to dest --- source_control/git.py | 1 + 1 file changed, 1 insertion(+) (limited to 'source_control/git.py') diff --git a/source_control/git.py b/source_control/git.py index 828017ec..3bccf877 100644 --- a/source_control/git.py +++ b/source_control/git.py @@ -706,6 +706,7 @@ def main(): if not dest and allow_clone: module.fail_json(msg="the destination directory must be specified unless clone=no") elif dest: + dest = os.path.abspath(dest) if bare: gitconfig = os.path.join(dest, 'config') else: -- cgit v1.2.1