Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDJ Houghton2009-01-19 19:55:09 +0000
committerDJ Houghton2009-01-19 19:55:09 +0000
commita65caf9307c5cc9fbcbc1b239f3c121f695cfb65 (patch)
treed01e822b7d2bd3b8f3c704ca3aa7762a385272c6 /bundles/org.eclipse.equinox.p2.metadata.repository
parent7982250a9a7f5ebc71de7a916010450962fbfe3e (diff)
downloadrt.equinox.p2-a65caf9307c5cc9fbcbc1b239f3c121f695cfb65.tar.gz
rt.equinox.p2-a65caf9307c5cc9fbcbc1b239f3c121f695cfb65.tar.xz
rt.equinox.p2-a65caf9307c5cc9fbcbc1b239f3c121f695cfb65.zip
Bug 261523 - [composite] Need option to not fail on create
Diffstat (limited to 'bundles/org.eclipse.equinox.p2.metadata.repository')
-rw-r--r--bundles/org.eclipse.equinox.p2.metadata.repository/src_ant/org/eclipse/equinox/internal/p2/metadata/repository/ant/CreateCompositeMetadataRepositoryTask.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundles/org.eclipse.equinox.p2.metadata.repository/src_ant/org/eclipse/equinox/internal/p2/metadata/repository/ant/CreateCompositeMetadataRepositoryTask.java b/bundles/org.eclipse.equinox.p2.metadata.repository/src_ant/org/eclipse/equinox/internal/p2/metadata/repository/ant/CreateCompositeMetadataRepositoryTask.java
index cd522289e..f16bb669b 100644
--- a/bundles/org.eclipse.equinox.p2.metadata.repository/src_ant/org/eclipse/equinox/internal/p2/metadata/repository/ant/CreateCompositeMetadataRepositoryTask.java
+++ b/bundles/org.eclipse.equinox.p2.metadata.repository/src_ant/org/eclipse/equinox/internal/p2/metadata/repository/ant/CreateCompositeMetadataRepositoryTask.java
@@ -33,7 +33,7 @@ public class CreateCompositeMetadataRepositoryTask extends Task {
URI location; // desired location of the composite repository
String name = "Composite Metadata Repository";
boolean compressed = true; // compress by default
- boolean failOnExists = true; // should we fail if one already exists?
+ boolean failOnExists = false; // should we fail if one already exists?
Map properties = new HashMap();
/* (non-Javadoc)

Back to the top