[Monodevelop-patches-list] r1939 - in branches/MonoDevelop-plan-43/src: Core Plugins/Content Plugins/Editor Plugins/Node Plugins/Workbench

commit-watcher at mono-cvs.ximian.com commit-watcher at mono-cvs.ximian.com
Sat Aug 14 18:00:56 EDT 2004


Author: tberman
Date: 2004-08-14 18:00:56 -0400 (Sat, 14 Aug 2004)
New Revision: 1939

Modified:
   branches/MonoDevelop-plan-43/src/Core/core.build
   branches/MonoDevelop-plan-43/src/Plugins/Content/content.build
   branches/MonoDevelop-plan-43/src/Plugins/Editor/editor.build
   branches/MonoDevelop-plan-43/src/Plugins/Node/node.build
   branches/MonoDevelop-plan-43/src/Plugins/Workbench/workbench.build
Log:
add overwrite="true" to the move commands.


Modified: branches/MonoDevelop-plan-43/src/Core/core.build
===================================================================
--- branches/MonoDevelop-plan-43/src/Core/core.build	2004-08-14 21:53:37 UTC (rev 1938)
+++ branches/MonoDevelop-plan-43/src/Core/core.build	2004-08-14 22:00:56 UTC (rev 1939)
@@ -20,7 +20,7 @@
                 </replacetokens>
             </filterchain>
         </copy>
-        <move file="monodevelop.exe.config" todir="${bin.dir}"/>
+        <move file="monodevelop.exe.config" todir="${bin.dir}" overwrite="true"/>
         
         <!-- install the monodevelop script -->
         <copy file="monodevelop.in" tofile="monodevelop">
@@ -34,6 +34,6 @@
         </copy>
         <!-- work around shortcoming of NAnt: no <chmod> task available atm -->
         <exec program="chmod" commandline="a+x monodevelop"/>
-        <move file="monodevelop" todir="${bin.dir}"/>
+        <move file="monodevelop" todir="${bin.dir}" overwrite="true"/>
     </target>
 </project>

Modified: branches/MonoDevelop-plan-43/src/Plugins/Content/content.build
===================================================================
--- branches/MonoDevelop-plan-43/src/Plugins/Content/content.build	2004-08-14 21:53:37 UTC (rev 1938)
+++ branches/MonoDevelop-plan-43/src/Plugins/Content/content.build	2004-08-14 22:00:56 UTC (rev 1939)
@@ -26,7 +26,7 @@
                 </replacetokens>
             </filterchain>
         </copy>
-        <move file="content.plugin" todir="${plugin.dir}"/>
+        <move file="content.plugin" todir="${plugin.dir}" overwrite="true"/>
         
         <!-- install the ui file -->
         <copy file="content.ui" todir="${ui.dir}"/>

Modified: branches/MonoDevelop-plan-43/src/Plugins/Editor/editor.build
===================================================================
--- branches/MonoDevelop-plan-43/src/Plugins/Editor/editor.build	2004-08-14 21:53:37 UTC (rev 1938)
+++ branches/MonoDevelop-plan-43/src/Plugins/Editor/editor.build	2004-08-14 22:00:56 UTC (rev 1939)
@@ -26,7 +26,7 @@
                 </replacetokens>
             </filterchain>
         </copy>
-        <move file="editor.plugin" todir="${plugin.dir}"/>
+        <move file="editor.plugin" todir="${plugin.dir}" overwrite="true"/>
         
         <!-- install the ui file -->
         <copy file="editor.ui" todir="${ui.dir}"/>

Modified: branches/MonoDevelop-plan-43/src/Plugins/Node/node.build
===================================================================
--- branches/MonoDevelop-plan-43/src/Plugins/Node/node.build	2004-08-14 21:53:37 UTC (rev 1938)
+++ branches/MonoDevelop-plan-43/src/Plugins/Node/node.build	2004-08-14 22:00:56 UTC (rev 1939)
@@ -23,6 +23,6 @@
                 </replacetokens>
             </filterchain>
         </copy>
-        <move file="node.plugin" todir="${plugin.dir}"/>
+        <move file="node.plugin" todir="${plugin.dir}" overwrite="true"/>
     </target>
 </project>

Modified: branches/MonoDevelop-plan-43/src/Plugins/Workbench/workbench.build
===================================================================
--- branches/MonoDevelop-plan-43/src/Plugins/Workbench/workbench.build	2004-08-14 21:53:37 UTC (rev 1938)
+++ branches/MonoDevelop-plan-43/src/Plugins/Workbench/workbench.build	2004-08-14 22:00:56 UTC (rev 1939)
@@ -23,7 +23,7 @@
                 </replacetokens>
             </filterchain>
         </copy>
-        <move file="workbench.plugin" todir="${plugin.dir}"/>
+        <move file="workbench.plugin" todir="${plugin.dir}" overwrite="true"/>
         
         <!-- install the ui file -->
         <copy file="workbench.ui" todir="${ui.dir}"/>




More information about the Monodevelop-patches-list mailing list