Closed adhusch closed 1 year ago
Not sure of this is the cause or another addtional problem, i've just noticed that
in ea_downloadasset.m we do
if strcmp(assetname,'Lead Datafiles')
however the asset name in the variable defined in the calling ea_checkinstall funciton is 'LeadDBS Data Files'
. Or is this a compatiblity bridge for an older version?
will check. Off-topic: fileparts
now supports cell input since a couple of versions ago. But if you input a cell with only 1 element, it returns you a string instead of a cell. To me, it's a bug. Maybe we should use a wrapper to fix this.
Hi!
I am trying to do Install / Redownload data-files
however i get
When looking this up in
ea_checkinstall.m
in the functionea_downloadasset
the destination variable is empty. Going up one step in the call stack toea_checkinstall
line 71 we find this call:success=ea_downloadasset('LeadDBS Data Files',... [],... '');
where
destination
is the 2nd paramenter, i.e. hard-coded empty!How could the datafile download ever work for anybody then? :) I am confused.
Best Andy