git still needs to have abspath applied to dest

This commit is contained in:
Toshio Kuratomi 2016-04-06 14:03:17 -07:00 committed by Matt Clay
parent dcbbd72cfd
commit 40948cfcc4

View file

@ -706,6 +706,7 @@ def main():
if not dest and allow_clone: if not dest and allow_clone:
module.fail_json(msg="the destination directory must be specified unless clone=no") module.fail_json(msg="the destination directory must be specified unless clone=no")
elif dest: elif dest:
dest = os.path.abspath(dest)
if bare: if bare:
gitconfig = os.path.join(dest, 'config') gitconfig = os.path.join(dest, 'config')
else: else: