diff options
Diffstat (limited to 'site_scons/site_tools/replicate.py')
-rw-r--r-- | site_scons/site_tools/replicate.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/site_scons/site_tools/replicate.py b/site_scons/site_tools/replicate.py index b11ce14..e64ec36 100644 --- a/site_scons/site_tools/replicate.py +++ b/site_scons/site_tools/replicate.py @@ -50,15 +50,15 @@ def Replicate(env, target, source, **kw): env: Environment in which to operate. target: Destination(s) for copy. Must evaluate to a directory via env.Dir(), or a list of directories. If more than one directory is - passed, the entire source list will be copied to all target - directories. + passed, the entire source list will be copied to each target + directory. source: Source file(s) to copy. May be a string, Node, or a list of mixed strings or Nodes. Strings will be passed through env.Glob() to evaluate wildcards. If a source evaluates to a directory, the entire directory will be recursively copied. From env: - REPLICATE_RENAME: A list of pairs of regex search and replacement strings. + REPLICATE_REPLACE: A list of pairs of regex search and replacement strings. Each full destination path has substitution performed on each pair (search_regex, replacement) in order. |