Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEike Stepper2019-12-17 10:59:47 +0000
committerEike Stepper2019-12-17 10:59:47 +0000
commit28b0824ab48410fc88cbd4f36c04f85751164eb3 (patch)
treef7fb24de6fd68fba4ed780c761f6f397a285ad73
parent16ea8339dfb144866dcd49bdd71fedffcd6bfa6d (diff)
downloadcdo.infrastructure-28b0824ab48410fc88cbd4f36c04f85751164eb3.tar.gz
cdo.infrastructure-28b0824ab48410fc88cbd4f36c04f85751164eb3.tar.xz
cdo.infrastructure-28b0824ab48410fc88cbd4f36c04f85751164eb3.zip
Support automatic deletion of old drops
-rw-r--r--org.eclipse.emf.cdo.releng.promotion/src/promoter/Repository.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.emf.cdo.releng.promotion/src/promoter/Repository.java b/org.eclipse.emf.cdo.releng.promotion/src/promoter/Repository.java
index 690c41f..0a1788d 100644
--- a/org.eclipse.emf.cdo.releng.promotion/src/promoter/Repository.java
+++ b/org.eclipse.emf.cdo.releng.promotion/src/promoter/Repository.java
@@ -48,7 +48,7 @@ public class Repository
folder = new File(PromoterConfig.INSTANCE.getCompositionTempArea(), path);
System.out.println();
- System.out.println("Generating repository " + name + ": " + path);
+ System.out.println("Generating repository " + name + ": " + getURL(false));
}
public final String getName()

Back to the top