Changeset 12663 for issm/trunk-jpl/src/m/classes/clusters/greenplanet.m
- Timestamp:
- 07/19/12 15:32:17 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/m/classes/clusters/greenplanet.m
r12371 r12663 48 48 end 49 49 %}}} 50 function checkconsistency(cluster,md,solution,analyses) % {{{50 function md = checkconsistency(cluster,md,solution,analyses) % {{{ 51 51 52 52 available_queues={'rignot','default'}; … … 57 57 58 58 %Miscelaneous 59 if isempty(cluster.login), checkmessage('login empty'); end60 if isempty(cluster.codepath), checkmessage('codepath empty'); end61 if isempty(cluster.executionpath), checkmessage('executionpath empty'); end59 if isempty(cluster.login), md = checkmessage(md,'login empty'); end 60 if isempty(cluster.codepath), md = checkmessage(md,'codepath empty'); end 61 if isempty(cluster.executionpath), md = checkmessage(md,'executionpath empty'); end 62 62 63 63 end
Note:
See TracChangeset
for help on using the changeset viewer.