Skip to content

Commit

Permalink
Faunus 0.1.1 release commit.
Browse files Browse the repository at this point in the history
  • Loading branch information
okram committed Mar 22, 2013
1 parent 3b723ac commit 7d3ea8d
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -210,6 +210,12 @@ public void composeJobs() throws IOException {
} else if (new File("../target/" + Tokens.FAUNUS_JOB_JAR).exists()) {
logger.warn("Using developer reference to target/" + Tokens.FAUNUS_JOB_JAR);
hadoopFileJar = "../target/" + Tokens.FAUNUS_JOB_JAR;
} else if (new File("lib/" + Tokens.FAUNUS_JOB_JAR).exists()) {
logger.warn("Using distribution reference to lib/" + Tokens.FAUNUS_JOB_JAR);
hadoopFileJar = "lib/" + Tokens.FAUNUS_JOB_JAR;
} else if (new File("../lib/" + Tokens.FAUNUS_JOB_JAR).exists()) {
logger.warn("Using distribution reference to lib/" + Tokens.FAUNUS_JOB_JAR);
hadoopFileJar = "../lib/" + Tokens.FAUNUS_JOB_JAR;
} else {
final String faunusHome = System.getenv(Tokens.FAUNUS_HOME);
if (null == faunusHome || faunusHome.isEmpty())
Expand Down

0 comments on commit 7d3ea8d

Please sign in to comment.