mirror of https://gitlab.com/pamhyr/pamhyr2
Solver: CommandLine: Fix path replace.
parent
65c261887c
commit
66f6d3505b
|
|
@ -147,7 +147,7 @@ class CommandLineSolver(AbstractSolver):
|
||||||
The executable and list of arguments
|
The executable and list of arguments
|
||||||
"""
|
"""
|
||||||
cmd = cmd.replace("@install_dir", self._install_dir())
|
cmd = cmd.replace("@install_dir", self._install_dir())
|
||||||
cmd = cmd.replace("\"@path\"", path)
|
cmd = cmd.replace("@path", "\"" + path + "\"")
|
||||||
cmd = cmd.replace("@input", self.input_param())
|
cmd = cmd.replace("@input", self.input_param())
|
||||||
cmd = cmd.replace("@output", self.output_param())
|
cmd = cmd.replace("@output", self.output_param())
|
||||||
cmd = cmd.replace("@dir", self._process.workingDirectory())
|
cmd = cmd.replace("@dir", self._process.workingDirectory())
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue