You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@geode.apache.org by Anthony Baker <ab...@pivotal.io> on 2016/08/03 00:06:42 UTC

GEMFIRE env var

I was looking at the geode-assembly build script and noticed this:

tasks.withType(Test){
  environment 'GEMFIRE', "$buildDir/install/${distributions.main.baseName}/lib”
}

…

// Create a configuration closure to configure test targets with the install directory
def dependOnInstalledProduct = {
  dependsOn installDist
  def install = file("$buildDir/install/${distributions.main.baseName}")
  environment ('GEMFIRE', install)
}


Any idea why we setting the GEMFIRE var twice to different values?  I think the first one is wrong.

Anthony