diff options
author | Stefan Bodewig <bodewig@apache.org> | 2010-05-11 09:49:14 +0000 |
---|---|---|
committer | Stefan Bodewig <bodewig@apache.org> | 2010-05-11 09:49:14 +0000 |
commit | c83bf3257f065004fa939698792fb6c61e9768d1 (patch) | |
tree | 1d69ec23e561266b43d6e2c8d0891ebd99a3936f /docs/manual/CoreTasks | |
parent | 508bb0dae114778e531d55d849b70e503c7c7edb (diff) | |
download | ant-c83bf3257f065004fa939698792fb6c61e9768d1.tar.gz |
deal with read-only dest files in echo and concat.
git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@943068 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs/manual/CoreTasks')
-rw-r--r-- | docs/manual/CoreTasks/concat.html | 19 | ||||
-rw-r--r-- | docs/manual/CoreTasks/echo.html | 6 |
2 files changed, 24 insertions, 1 deletions
diff --git a/docs/manual/CoreTasks/concat.html b/docs/manual/CoreTasks/concat.html index a2c5646fd..ddc9549ee 100644 --- a/docs/manual/CoreTasks/concat.html +++ b/docs/manual/CoreTasks/concat.html @@ -83,13 +83,30 @@ Resource Collection</a>s are used to <td valign="top"> Specifies whether or not the file specified by 'destfile' should be written to even if it is newer than all source files. - <em>since Ant 1.6</em>. + <strong>deprecated, use the overwrite attribute instead</strong> + Defaults to "yes". + </td> + <td valign="top" align="center">No</td> + </tr> + <tr> + <td valign="top">overwrite</td> + <td valign="top"> + Specifies whether or not the file specified by 'destfile' + should be written to even if it is newer than all source files. + <em>since Ant 1.8.2</em>. Defaults to "yes". </td> <td valign="top" align="center">No</td> </tr> <tr> + <td valign="top">forceReadOnly</td> + <td valign="top">Overwrite read-only destination + files. <em>since Ant 1.8.2</em></td> + <td valign="top" align="center">No; defaults to false.</td> + </tr> + + <tr> <td valign="top">encoding</td> <td valign="top"> Specifies the encoding for the input files. Please see <a diff --git a/docs/manual/CoreTasks/echo.html b/docs/manual/CoreTasks/echo.html index 833368f56..377ab7578 100644 --- a/docs/manual/CoreTasks/echo.html +++ b/docs/manual/CoreTasks/echo.html @@ -79,6 +79,12 @@ ignored</p> <td valign="top">encoding to use, default is ""; the local system encoding. <em>since Ant 1.7</em></td> <td valign="top" align="center">No</td> </tr> + <tr> + <td valign="top">force</td> + <td valign="top">Overwrite read-only destination + files. <em>since Ant 1.8.2</em></td> + <td valign="top" align="center">No; defaults to false.</td> + </tr> </table> <h3>Examples</h3> |