diff options
author | antelder <antelder@13f79535-47bb-0310-9956-ffa450edef68> | 2009-05-25 08:03:22 +0000 |
---|---|---|
committer | antelder <antelder@13f79535-47bb-0310-9956-ffa450edef68> | 2009-05-25 08:03:22 +0000 |
commit | 4ffe450f7a6c1a876da53d0d548d61025c22f966 (patch) | |
tree | d2f43ea032e1bd2bfec10d3305675131015f80c0 /java/sca/distribution | |
parent | 4b17e7f008a5a4cc573bb895c3953c53ef9b2463 (diff) |
Correct tomcat server lib directory name
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@778338 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'java/sca/distribution')
-rw-r--r-- | java/sca/distribution/tomcat/tomcat-hook/src/main/java/org/apache/tuscany/sca/tomcat/TuscanyLifecycleListener.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/java/sca/distribution/tomcat/tomcat-hook/src/main/java/org/apache/tuscany/sca/tomcat/TuscanyLifecycleListener.java b/java/sca/distribution/tomcat/tomcat-hook/src/main/java/org/apache/tuscany/sca/tomcat/TuscanyLifecycleListener.java index 9533c43acb..a2e15cd68d 100644 --- a/java/sca/distribution/tomcat/tomcat-hook/src/main/java/org/apache/tuscany/sca/tomcat/TuscanyLifecycleListener.java +++ b/java/sca/distribution/tomcat/tomcat-hook/src/main/java/org/apache/tuscany/sca/tomcat/TuscanyLifecycleListener.java @@ -126,7 +126,7 @@ public class TuscanyLifecycleListener implements LifecycleListener { // iterate over the contexts
for (File contextDir : hostDir.listFiles()) {
// does this war have a web-inf lib dir
- File hookLib = new File(contextDir, "server-lib");
+ File hookLib = new File(contextDir, "tomcat-lib");
if (!hookLib.isDirectory()) {
continue;
}
|