Changeset 22792
- Timestamp:
- 05/17/18 11:07:37 (7 years ago)
- Location:
- issm/trunk/src/m/coordsystems
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/src/m/coordsystems/gmtmask.m
r22790 r22792 41 41 end 42 42 43 %Find path to gmt 43 %Find path to gmt, list all possible known paths to gmt (you may need to add yours to the list) 44 44 paths = {[issmdir() '/bin/gmt'],[issmdir() '/externalpackages/gmt/install/bin/gmt'],'/Applications/GMT-5.4.3.app/Contents/Resources/bin/gmt'}; 45 45 gmtpath = ''; … … 51 51 end 52 52 if isempty(gmtpath), 53 error('gmt not found, make sure it is properly installed ');53 error('gmt not found, make sure it is properly installed, or add its path to this file (line 44)'); 54 54 end 55 55 -
issm/trunk/src/m/coordsystems/gmtmaskparallel.m
r22790 r22792 23 23 end 24 24 25 %Find path to gmt 25 %Find path to gmt, list all possible known paths to gmt (you may need to add yours to the list) 26 26 paths = {[issmdir() '/bin/gmt'],[issmdir() '/externalpackages/gmt/install/bin/gmt'],'/Applications/GMT-5.4.3.app/Contents/Resources/bin/gmt'}; 27 27 gmtpath = ''; … … 33 33 end 34 34 if isempty(gmtpath), 35 error('gmt not found, make sure it is properly installed');35 error('gmt not found, make sure it is properly installed, or add its path to this file (line 26)'); 36 36 end 37 37
Note:
See TracChangeset
for help on using the changeset viewer.