aboutsummaryrefslogtreecommitdiff
path: root/rhodecode
diff options
context:
space:
mode:
authorMarcin Kuzminski <marcin@python-works.com>2013-01-23 20:22:08 +0100
committerMarcin Kuzminski <marcin@python-works.com>2013-01-23 20:22:08 +0100
commit957e944fc632b724d34f10ebd9a15a7cc5471b7b (patch)
treeff5f32ef54bedb813d89a824a4a119652b8865ef /rhodecode
parentaec0479e3310e626f2ced18e127838d36b92095c (diff)
fixes stupid git ci call that can break on systems that don't have this alias
--HG-- extra : source : 9f57b5624ec4e336187e3af2ce2aaf5ff5970d4e
Diffstat (limited to 'rhodecode')
-rwxr-xr-xrhodecode/tests/scripts/test_vcs_operations.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/rhodecode/tests/scripts/test_vcs_operations.py b/rhodecode/tests/scripts/test_vcs_operations.py
index 1ff86130..6fafc76e 100755
--- a/rhodecode/tests/scripts/test_vcs_operations.py
+++ b/rhodecode/tests/scripts/test_vcs_operations.py
@@ -112,7 +112,7 @@ def _add_files_and_push(vcs, DEST, **kwargs):
i, 'Marcin Kuźminski <marcin@python-blog.com>', added_file
)
elif vcs == 'git':
- cmd = """git ci -m 'commited new %s' --author '%s' %s """ % (
+ cmd = """git commit -m 'commited new %s' --author '%s' %s """ % (
i, 'Marcin Kuźminski <marcin@python-blog.com>', added_file
)
Command(cwd).execute(cmd)