From 55ea20d9af00ec9e5c070c61235480a0044b5317 Mon Sep 17 00:00:00 2001 From: "Jeffrey C. Ollie" Date: Sun, 8 Feb 2009 22:40:21 -0600 Subject: Newer versions of git in F11 will not have "git-" commands in the path, need to use "git ". --- modules/rpmcvspackage.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/rpmcvspackage.py b/modules/rpmcvspackage.py index 65724af..4d71b52 100644 --- a/modules/rpmcvspackage.py +++ b/modules/rpmcvspackage.py @@ -63,7 +63,7 @@ class RpmCvsPackage(Package): for branch in v_branches: dir_name = fedora_name + '.' + branch cvs_branch = join(fedora_name, branch) - cmd = ['git-cvsimport', '-o', branch, '-C', dir_name, cvs_branch] + cmd = ['git', 'cvsimport', '-o', branch, '-C', dir_name, cvs_branch] with log_file('cvs.log') as cvs_log: p = Popen(cmd, stdout=cvs_log, stderr=cvs_log, env=env) -- cgit