Return-Path: Delivered-To: apmail-geronimo-scm-archive@www.apache.org Received: (qmail 35740 invoked from network); 31 May 2007 00:44:12 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 31 May 2007 00:44:12 -0000 Received: (qmail 21138 invoked by uid 500); 31 May 2007 00:44:16 -0000 Delivered-To: apmail-geronimo-scm-archive@geronimo.apache.org Received: (qmail 21130 invoked by uid 500); 31 May 2007 00:44:16 -0000 Mailing-List: contact scm-help@geronimo.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: Reply-To: dev@geronimo.apache.org List-Id: Delivered-To: mailing list scm@geronimo.apache.org Received: (qmail 21119 invoked by uid 99); 31 May 2007 00:44:16 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 30 May 2007 17:44:16 -0700 X-ASF-Spam-Status: No, hits=-98.6 required=10.0 tests=ALL_TRUSTED,INFO_TLD,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 30 May 2007 17:44:11 -0700 Received: by eris.apache.org (Postfix, from userid 65534) id 94CF01A981A; Wed, 30 May 2007 17:43:51 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r543001 - /geronimo/sandbox/build-support/libraries/system/1/groovy/gbuild/system/library/codestation/LibraryImpl.groovy Date: Thu, 31 May 2007 00:43:51 -0000 To: scm@geronimo.apache.org From: jdillon@apache.org X-Mailer: svnmailer-1.1.0 Message-Id: <20070531004351.94CF01A981A@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: jdillon Date: Wed May 30 17:43:50 2007 New Revision: 543001 URL: http://svn.apache.org/viewvc?view=rev&rev=543001 Log: blid is a string Modified: geronimo/sandbox/build-support/libraries/system/1/groovy/gbuild/system/library/codestation/LibraryImpl.groovy Modified: geronimo/sandbox/build-support/libraries/system/1/groovy/gbuild/system/library/codestation/LibraryImpl.groovy URL: http://svn.apache.org/viewvc/geronimo/sandbox/build-support/libraries/system/1/groovy/gbuild/system/library/codestation/LibraryImpl.groovy?view=diff&rev=543001&r1=543000&r2=543001 ============================================================================== --- geronimo/sandbox/build-support/libraries/system/1/groovy/gbuild/system/library/codestation/LibraryImpl.groovy (original) +++ geronimo/sandbox/build-support/libraries/system/1/groovy/gbuild/system/library/codestation/LibraryImpl.groovy Wed May 30 17:43:50 2007 @@ -95,7 +95,7 @@ // Save the state of the library def props = new Properties() - props['buildLifeId'] = _buildLifeId + props['buildLifeId'] = "${_buildLifeId}" def statusFile = new File(baseDir, '.library-info.properties') props.store(statusFile.newOutputStream(), null) @@ -122,7 +122,7 @@ log.info("Have buildLifeId: ${props['buildLifeId']}, latest is: ${buildLifeId}") - return props['buildLifeId'] == buildLifeId + return props['buildLifeId'] == "$buildLifeId" } void update() {