You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by jd...@apache.org on 2007/05/31 02:43:51 UTC

svn commit: r543001 - /geronimo/sandbox/build-support/libraries/system/1/groovy/gbuild/system/library/codestation/LibraryImpl.groovy

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() {