the command is 'cp', not 'copy'
authorAndrew Gaffney <agaffney@gentoo.org>
Sun, 29 Nov 2009 03:16:01 +0000 (21:16 -0600)
committerAndrew Gaffney <agaffney@gentoo.org>
Sun, 29 Nov 2009 03:16:01 +0000 (21:16 -0600)
modules/catalyst/util.py

index 37ace80c9aef0c4386eab333510ec3ea16ddf297..09f9c4419fd846724f8c78192e89b2489f731b97 100644 (file)
@@ -275,7 +275,7 @@ def mkdir(path, perms=0755):
                raise CatalystError("Could not create directory '%s'" % (path,))
 
 def copy(src, dest, recursive=False):
-       copy_cmd = "copy "
+       copy_cmd = "cp "
        if recursive:
                copy_cmd += "-R "
        copy_cmd += src + " " + dest