You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@uima.apache.org by sc...@apache.org on 2007/12/06 06:21:03 UTC

svn commit: r601618 - /incubator/uima/uimaj/trunk/uimaj-cpe/src/main/java/org/apache/uima/collection/impl/cpm/container/deployer/vinci/VinciCasProcessorDeployer.java

Author: schor
Date: Wed Dec  5 21:21:02 2007
New Revision: 601618

URL: http://svn.apache.org/viewvc?rev=601618&view=rev
Log:
[UIMA-667] change /bin/ksh to /bin/sh Adam verified that the -c param is the same. Marshall tested using sh on SUSE Linux - is OK.

Modified:
    incubator/uima/uimaj/trunk/uimaj-cpe/src/main/java/org/apache/uima/collection/impl/cpm/container/deployer/vinci/VinciCasProcessorDeployer.java

Modified: incubator/uima/uimaj/trunk/uimaj-cpe/src/main/java/org/apache/uima/collection/impl/cpm/container/deployer/vinci/VinciCasProcessorDeployer.java
URL: http://svn.apache.org/viewvc/incubator/uima/uimaj/trunk/uimaj-cpe/src/main/java/org/apache/uima/collection/impl/cpm/container/deployer/vinci/VinciCasProcessorDeployer.java?rev=601618&r1=601617&r2=601618&view=diff
==============================================================================
--- incubator/uima/uimaj/trunk/uimaj-cpe/src/main/java/org/apache/uima/collection/impl/cpm/container/deployer/vinci/VinciCasProcessorDeployer.java (original)
+++ incubator/uima/uimaj/trunk/uimaj-cpe/src/main/java/org/apache/uima/collection/impl/cpm/container/deployer/vinci/VinciCasProcessorDeployer.java Wed Dec  5 21:21:02 2007
@@ -462,7 +462,7 @@
 
       String[] execCommand = new String[3];
       if (System.getProperty("os.name").equalsIgnoreCase("linux")) {
-        execCommand[0] = "/bin/ksh";
+        execCommand[0] = "/bin/sh";
         execCommand[1] = "-c";
       }
       StringBuffer sb = new StringBuffer();