summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--source_control/git.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/source_control/git.py b/source_control/git.py
index 0cb87304..71e3893d 100644
--- a/source_control/git.py
+++ b/source_control/git.py
@@ -642,6 +642,10 @@ def main():
key_file = module.params['key_file']
ssh_opts = module.params['ssh_opts']
+ # We screenscrape a huge amount of git commands so use C locale anytime we
+ # call run_command()
+ module.run_command_environ_update = dict(LANG='C', LC_ALL='C', LC_MESSAGES='C', LC_CTYPE='C')
+
gitconfig = None
if not dest and allow_clone:
module.fail_json(msg="the destination directory must be specified unless clone=no")
@@ -767,4 +771,5 @@ def main():
from ansible.module_utils.basic import *
from ansible.module_utils.known_hosts import *
-main()
+if __name__ == '__main__':
+ main()