View | Details | Raw Unified | Return to bug 36847
Collapse All | Expand All

(-)container/webapps/manager/WEB-INF/classes/org/apache/catalina/manager/ManagerServlet.java (-1 / +4 lines)
Lines 630-636 Link Here
630
                        File localWarCopy = new File(deployedPath, basename + ".war");
630
                        File localWarCopy = new File(deployedPath, basename + ".war");
631
                        copy(localWar, localWarCopy);
631
                        copy(localWar, localWarCopy);
632
                        localWar = localWarCopy;
632
                        localWar = localWarCopy;
633
                        copy(localWar, new File(getAppBase(), basename + ".war"));
633
                        File secondCopy = new File(getAppBase(), basename + ".war");
634
                        if( !localWar.getCanonicalPath().equals(secondCopy.getCanonicalPath()) ) {
635
                            copy(localWar, secondCopy);
636
                        }
634
                    }
637
                    }
635
                    // Perform new deployment
638
                    // Perform new deployment
636
                    check(path);
639
                    check(path);

Return to bug 36847