summaryrefslogtreecommitdiffstats
path: root/modules
diff options
context:
space:
mode:
authorJeffrey C. Ollie <jeff@ocjtech.us>2009-02-08 22:40:21 -0600
committerJeffrey C. Ollie <jeff@ocjtech.us>2009-02-08 22:40:21 -0600
commit55ea20d9af00ec9e5c070c61235480a0044b5317 (patch)
tree305669858584f91923fd7984918837a2ca25d7e7 /modules
parent38ca2c727bbe562bf5fb8c4638af8575b87c5634 (diff)
downloadfedora-devshell-55ea20d9af00ec9e5c070c61235480a0044b5317.tar.gz
fedora-devshell-55ea20d9af00ec9e5c070c61235480a0044b5317.tar.xz
fedora-devshell-55ea20d9af00ec9e5c070c61235480a0044b5317.zip
Newer versions of git in F11 will not have "git-<command>" commands in the path, need to use "git <command>".HEADmaster
Diffstat (limited to 'modules')
-rw-r--r--modules/rpmcvspackage.py2
1 files changed, 1 insertions, 1 deletions
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)