Author: mattmann
Date: Thu Oct 23 03:36:52 2014
New Revision: 1633739

URL: http://svn.apache.org/r1633739
Log:
- fix for OODT-763 Correcting path to OODT_HOME and FILEMGR_HOME contributed by 
vishalhemnani this closes #4

Modified:
    oodt/trunk/CHANGES.txt
    
oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/filemgr/src/main/resources/bin/query-tool

Modified: oodt/trunk/CHANGES.txt
URL: 
http://svn.apache.org/viewvc/oodt/trunk/CHANGES.txt?rev=1633739&r1=1633738&r2=1633739&view=diff
==============================================================================
--- oodt/trunk/CHANGES.txt (original)
+++ oodt/trunk/CHANGES.txt Thu Oct 23 03:36:52 2014
@@ -3,6 +3,8 @@ Apache OODT Change Log
 
 Release 0.8 - Current Development
 
+* OODT-763 Correcting path to OODT_HOME and FILEMGR_HOME (vishalhemnani via 
mattmann)
+
 * OODT-385, OODT-630, OODT-631, OODT-632. Upgraded Tika to version 1.6.
 
 * OODT-757 Fixed PGETaskInstance bug that prevented instantiation of 
AutoDetectProductCrawler (luca)

Modified: 
oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/filemgr/src/main/resources/bin/query-tool
URL: 
http://svn.apache.org/viewvc/oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/filemgr/src/main/resources/bin/query-tool?rev=1633739&r1=1633738&r2=1633739&view=diff
==============================================================================
--- 
oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/filemgr/src/main/resources/bin/query-tool
 (original)
+++ 
oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/filemgr/src/main/resources/bin/query-tool
 Thu Oct 23 03:36:52 2014
@@ -42,7 +42,7 @@ done
 PRGDIR=`dirname "$PRG"`
 
 # Only set OODT_HOME if not already set
-[ -z "$OODT_HOME" ] && OODT_HOME=`cd "$PRGDIR/../../.." ; pwd`
+[ -z "$OODT_HOME" ] && OODT_HOME=`cd "$PRGDIR/../.." ; pwd`
 
 # Get OODT environment set up
 if [ -r "$OODT_HOME"/bin/env.sh ]; then
@@ -51,7 +51,7 @@ fi
 
 # Only set FILEMGR_HOME if not already set
 if [ -z "$FILEMGR_HOME" ]; then
-  FILEMGR_HOME="$OODT_HOME"/components/filemgr
+  FILEMGR_HOME="$OODT_HOME"/filemgr
   export FILEMGR_HOME
 fi
 


Reply via email to