mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-13 00:45:44 +01:00
use contact instead of "+"
This commit is contained in:
@@ -143,12 +143,12 @@ public class DefaultCGIExecutor extends AbstractCGIExecutor
|
|||||||
|
|
||||||
if ((execCmd.charAt(0) != '"') && (execCmd.indexOf(" ") >= 0))
|
if ((execCmd.charAt(0) != '"') && (execCmd.indexOf(" ") >= 0))
|
||||||
{
|
{
|
||||||
execCmd = "\"" + execCmd + "\"";
|
execCmd = "\"".concat(execCmd).concat("\"");
|
||||||
}
|
}
|
||||||
|
|
||||||
if (interpreter != null)
|
if (interpreter != null)
|
||||||
{
|
{
|
||||||
execCmd = interpreter + " " + execCmd;
|
execCmd = interpreter.concat(" ").concat(execCmd);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (logger.isDebugEnabled())
|
if (logger.isDebugEnabled())
|
||||||
|
|||||||
Reference in New Issue
Block a user