ci: Minor change.

mesh
Pierre-Antoine Rouby 2023-09-13 12:21:08 +02:00
parent efff8fe4dc
commit bb662346fa
2 changed files with 15 additions and 14 deletions

View File

@ -16,30 +16,32 @@ rem along with this program. If not, see <https://www.gnu.org/licenses/>.
@ECHO ON
copy /y dist\pamhyr pamhyr\
mkdir pamhyr\pamhyr
copy /y dist\pamhyr pamhyr\pamhyr
rem Copy data
mkdir pamhyr\View\ui\ressources
mkdir pamhyr\View\ui\Widgets
mkdir pamhyr\pamhyr\lang
mkdir pamhyr\pamhyr\View\ui\ressources
mkdir pamhyr\pamhyr\View\ui\Widgets
rem UI
copy /y ..\src\View\ui\ressources\ pamhyr\View\ui\ressources
copy /y ..\src\View\ui\Widgets\*.ui pamhyr\View\ui\Widgets
copy /y ..\src\View\ui\*.ui pamhyr\View\ui\
copy /y ..\src\View\ui\ressources\ pamhyr\pamhyr\View\ui\ressources
copy /y ..\src\View\ui\Widgets\*.ui pamhyr\pamhyr\View\ui\Widgets
copy /y ..\src\View\ui\*.ui pamhyr\pamhyr\View\ui\
rem Lang
copy /y ..\src\lang\*.qm pamhyr\lang\
copy /y ..\src\lang\*.qm pamhyr\pamhyr\lang\
rem Information
copy /y ..\VERSION pamhyr\
copy /y ..\AUTHORS pamhyr\
copy /y ..\LICENSE pamhyr\
copy /y ..\VERSION pamhyr\pamhyr
copy /y ..\AUTHORS pamhyr\pamhyr
copy /y ..\LICENSE pamhyr\pamhyr
rem MAGE
mkdir pamhyr\mage
copy /y ..\mage\mage.exe pamhyr\mage\
copy /y ..\mage\mage_extraire.exe pamhyr\mage\
copy /y ..\mage\mailleurPF.exe pamhyr\mage\
copy /y ..\mage-windows\mage.exe pamhyr\mage\
copy /y ..\mage-windows\mage_extraire.exe pamhyr\mage\
copy /y ..\mage-windows\mailleurPF.exe pamhyr\mage\
rem Copy tests_cases
mkdir pamhyr\tests_cases

View File

@ -217,7 +217,6 @@ class AbstractSolver(object):
The executable and list of arguments
"""
# HACK: Works in most case... Trust me i'm an engineer
cmd = cmd.replace("@install_dir", self._install_dir())
cmd = cmd.replace("@path", path.replace(" ", "\ "))
cmd = cmd.replace("@input", self.input_param())