Changeset 19661


Ignore:
Timestamp:
10/19/15 17:25:22 (9 years ago)
Author:
glperez
Message:

CHG: Moved Dakota version check to after we check if the build isDakota.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/m/classes/clusters/generic.m

    r19649 r19661  
    9595                        %what is the executable being called?
    9696                        executable='issm.exe';
    97                         version=IssmConfig('_DAKOTA_VERSION_'); version=str2num(version(1:3));
    98                         if isdakota & (version>=6),
    99                                 executable='issm_dakota.exe';
     97                        if isdakota,
     98                                version=IssmConfig('_DAKOTA_VERSION_'); version=str2num(version(1:3));
     99                                if (version>=6),
     100                                        executable='issm_dakota.exe';
     101                                end
    100102                        end
    101103
Note: See TracChangeset for help on using the changeset viewer.