You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A change in the mcpath file (line 30) from the previous version seems to have broken the ability to find files in the bin folder, typically executables.
Operating System: Windows 10
MATLAB: '9.2.0.538062 (R2017a)'
Error: '"cgalsurf.exe"' is not recognized as an internal or external command, operable program or batch file.
Current Code: mcpath (line 30) - if(exist(tempname,'file'))
Edited Code: mcpath (line 30) - if(exist([tempname getexeext],'file')) <-- looks for specific file (recommended)
Alternative Code: mcpath (line 30) - if(exist([fileparts(which(mfilename)) filesep 'bin'],'file')) <-- looks for the bin folder, this is how the previous version code worked.
The text was updated successfully, but these errors were encountered:
A change in the mcpath file (line 30) from the previous version seems to have broken the ability to find files in the bin folder, typically executables.
Operating System: Windows 10
MATLAB: '9.2.0.538062 (R2017a)'
Error: '"cgalsurf.exe"' is not recognized as an internal or external command, operable program or batch file.
Current Code: mcpath (line 30) - if(exist(tempname,'file'))
Edited Code: mcpath (line 30) - if(exist([tempname getexeext],'file')) <-- looks for specific file (recommended)
Alternative Code: mcpath (line 30) - if(exist([fileparts(which(mfilename)) filesep 'bin'],'file')) <-- looks for the bin folder, this is how the previous version code worked.
The text was updated successfully, but these errors were encountered: