Skip to content
Snippets Groups Projects

Restore windows and old-gmm compatibility

Merged Boman Romain requested to merge fix_gmm into master
1 file
+ 2
1
Compare changes
  • Side-by-side
  • Inline
+ 2
1
@@ -81,7 +81,8 @@ class MeshLoader:
if rebuild:
print ' [%s] running gmsh on "%s"...' % (self.__class__, geofile)
parcmd = self.__buildParList(pars)
cmd = 'gmsh -3 %s -o "%s" "%s"'% (parcmd, mshfile, geofile)
# TEMPORARY FIX: force gmsh to produce meshes in v2 format [RB]
cmd = 'gmsh -3 -format msh2 %s -o "%s" "%s"'% (parcmd, mshfile, geofile)
if self.verb: print " [%s] cmd= %s" % (self.__class__, cmd)
import shlex
Loading