Yeah, I initially committed it to gradle-master and only realized this a couple of hours later -- sorry about the noise!
Dawid On Fri, Jan 17, 2020 at 9:04 AM Uwe Schindler <[email protected]> wrote: > > Thanks! > > I was confused about this, this explains why it happened. > > ----- > Uwe Schindler > Achterdiek 19, D-28357 Bremen > https://www.thetaphi.de > eMail: [email protected] > > > -----Original Message----- > > From: [email protected] <[email protected]> > > Sent: Thursday, January 16, 2020 6:59 PM > > To: [email protected] > > Subject: [lucene-solr] branch master updated: Don't delete jetty-start when > > regenerating sha checksums from ant. > > > > This is an automated email from the ASF dual-hosted git repository. > > > > dweiss pushed a commit to branch master > > in repository https://gitbox.apache.org/repos/asf/lucene-solr.git > > > > > > The following commit(s) were added to refs/heads/master by this push: > > new 1e4565c Don't delete jetty-start when regenerating sha checksums > > from ant. > > 1e4565c is described below > > > > commit 1e4565ce264c82e99bed0e466cae23df5e07138d > > Author: Dawid Weiss <[email protected]> > > AuthorDate: Thu Jan 16 10:07:01 2020 +0100 > > > > Don't delete jetty-start when regenerating sha checksums from ant. > > --- > > lucene/common-build.xml | 6 ++++++ > > 1 file changed, 6 insertions(+) > > > > diff --git a/lucene/common-build.xml b/lucene/common-build.xml > > index 5712e44..7b8e97a 100644 > > --- a/lucene/common-build.xml > > +++ b/lucene/common-build.xml > > @@ -2245,6 +2245,12 @@ > > ${ant.project.name}.test.dependencies=${test.classpath.list} > > <delete> > > <fileset dir="@{dstdir}"> > > <include name="**/*.jar.sha1"/> > > + > > + <!-- > > + Don't delete jetty-start-* because this isn't regerated by ant > > (but is > > generated and validated by > > + the gradle build). > > + --> > > + <exclude name="**/jetty-start-*" /> > > </fileset> > > </delete> > > > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [email protected] > For additional commands, e-mail: [email protected] > --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
