Commit 36adba84 authored by Pierre-Antoine Rouby's avatar Pierre-Antoine Rouby
Browse files

config: Fix arguments in default mage solver.

Showing with 2 additions and 2 deletions
+2 -2
...@@ -101,7 +101,7 @@ class Config(SQL): ...@@ -101,7 +101,7 @@ class Config(SQL):
'', '', '', '', '', '',
'', '',
'@install_dir/mage/mage{"" if posix else ".exe"} -fp=1 @input', '@install_dir/mage/mage{"" if posix else ".exe"} @args @input',
'' ''
) )
""") """)
...@@ -266,7 +266,7 @@ class Config(SQL): ...@@ -266,7 +266,7 @@ class Config(SQL):
ctor = solver_type_list["mage8"] ctor = solver_type_list["mage8"]
new = ctor("default-mage") new = ctor("default-mage")
new._description = "Default Pamhyr2 mage 8 version" new._description = "Default Pamhyr2 mage 8 version"
new._cmd_solver = f""""@install_dir/mage/mage{"" if posix else ".exe"}" -fp=1 @input""" new._cmd_solver = f""""@install_dir/mage/mage{"" if posix else ".exe"}" @args @input"""
self._solvers.append(new) self._solvers.append(new)
# Meshing tool # Meshing tool
......
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