Commit 66f6d350 authored by Pierre-Antoine Rouby's avatar Pierre-Antoine Rouby
Browse files

Solver: CommandLine: Fix path replace.

Showing with 1 addition and 1 deletion
+1 -1
......@@ -147,7 +147,7 @@ class CommandLineSolver(AbstractSolver):
The executable and list of arguments
"""
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("@output", self.output_param())
cmd = cmd.replace("@dir", self._process.workingDirectory())
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment