Changeset 25098


Ignore:
Timestamp:
06/22/20 11:25:37 (5 years ago)
Author:
jdquinn
Message:

BUG: Bad copy + paste

Location:
issm/trunk-jpl/src/m/mesh/planet/gmsh
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/m/mesh/planet/gmsh/gmshplanet.m

    r25095 r25098  
    1616
    1717        % Get Gmsh version
    18         [s,r]=system(['gmsh -info | grep ''Version'' | sed -e ''s/Version[[:blank:]]*:[[:blank:]]//'' | cut - d ''.'' -f1'])
     18        [s,r]=system(['gmsh -info | grep ''Version'' | sed -e ''s/Version[[:blank:]]*:[[:blank:]]//'' | cut -d ''.'' -f1'])
    1919        if s~=0,
    2020                error(r);
  • issm/trunk-jpl/src/m/mesh/planet/gmsh/gmshplanet.py

    r25096 r25098  
    2626
    2727    # Get Gmsh version
    28     args = "gmsh -info | grep 'Version' | sed -e 's/Version[[:blank:]]*:[[:blank:]]//' | cut - d '.' -f1"
     28    args = "gmsh -info | grep 'Version' | sed -e 's/Version[[:blank:]]*:[[:blank:]]//' | cut -d '.' -f1"
    2929    proc = subprocess.Popen(args, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
    3030    outs, errs = proc.communicate()
Note: See TracChangeset for help on using the changeset viewer.