mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-11 16:05: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))
|
||||
{
|
||||
execCmd = "\"" + execCmd + "\"";
|
||||
execCmd = "\"".concat(execCmd).concat("\"");
|
||||
}
|
||||
|
||||
if (interpreter != null)
|
||||
{
|
||||
execCmd = interpreter + " " + execCmd;
|
||||
execCmd = interpreter.concat(" ").concat(execCmd);
|
||||
}
|
||||
|
||||
if (logger.isDebugEnabled())
|
||||
|
||||
Reference in New Issue
Block a user