projects
/
catalyst.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7ff814d
)
the command is 'cp', not 'copy'
author
Andrew Gaffney
<agaffney@gentoo.org>
Sun, 29 Nov 2009 03:16:01 +0000
(21:16 -0600)
committer
Andrew Gaffney
<agaffney@gentoo.org>
Sun, 29 Nov 2009 03:16:01 +0000
(21:16 -0600)
modules/catalyst/util.py
patch
|
blob
|
history
diff --git
a/modules/catalyst/util.py
b/modules/catalyst/util.py
index 37ace80c9aef0c4386eab333510ec3ea16ddf297..09f9c4419fd846724f8c78192e89b2489f731b97 100644
(file)
--- a/
modules/catalyst/util.py
+++ b/
modules/catalyst/util.py
@@
-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 = "c
opy
"
+ copy_cmd = "c
p
"
if recursive:
copy_cmd += "-R "
copy_cmd += src + " " + dest