Dennis Lundberg wrote:
Phil Steitz wrote:
Failed build logs:
http://vmbuild.apache.org/~commons/nightly/logs//20070612/beanutils.log
http://vmbuild.apache.org/~commons/nightly/logs//20070612/logging.log

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Now I'm confused. From what I can tell by the log for logging, all the builds were successful. Might be something wrong with the nightly script. Will have a look.


Found it. On line 280 we do this:

  if [ `ls target/commons-$component*.jar` ] # build succeeded

With commons logging there is more than one such jar file, which makes for an unpredictable response from "ls". We should probably do something along the lines of this instead:

  if [ -f target/commons-$component*.jar ] # build succeeded

I'll let one of the unix gurus figure that the exact details, since I don't have an environment set up to try this properly.

--
Dennis Lundberg

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to