From 9b971979f816a58ada37212fcd7757331182141d Mon Sep 17 00:00:00 2001 From: dongjun-Lee Date: Thu, 27 Aug 2015 16:13:09 +0900 Subject: [PATCH] [REEF-655] Fix jar file path of run.sh to point to valid location This addressed the issue by * Fixed the path JIRA: [REEF-655](https://issues.apache.org/jira/browse/REEF-655) Pull Request: Closes #426 --- bin/run.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/run.sh b/bin/run.sh index b5bb0a4519..e408adf760 100755 --- a/bin/run.sh +++ b/bin/run.sh @@ -22,7 +22,7 @@ # ./run.sh org.apache.reef.examples.hello.HelloREEF # RUNTIME -SELF_JAR=`echo $REEF_HOME/reef-examples/target/reef-examples-*-shaded.jar` +SELF_JAR=`echo $REEF_HOME/lang/java/reef-examples/target/reef-examples-*-shaded.jar` LOGGING_CONFIG='-Djava.util.logging.config.class=org.apache.reef.util.logging.Config'