@@ -133,7 +133,7 @@ function plotlyupdate(varargin)
133
133
fprintf([' Downloading the Plotly API Matlab Library v.' pvRemote ' ... ' ]);
134
134
end
135
135
136
- newPlotlyUrl = ' https://github.com/plotly/MATLAB-api/archive/master .zip' ;
136
+ newPlotlyUrl = ' https://github.com/plotly/MATLAB-api/archive/plotlyupdate .zip' ;
137
137
newPlotlyZip = fullfile(plotlyUpdateDir ,[' plotlyupdate_' pvRemote ' .zip' ]);
138
138
139
139
% download from url
@@ -178,10 +178,10 @@ function plotlyupdate(varargin)
178
178
end
179
179
180
180
% new Plotly directory
181
- newPlotlyDir = fullfile(plotlyUpdateDir ,' MATLAB-api-master ' ,' plotly' );
181
+ newPlotlyDir = fullfile(plotlyUpdateDir ,' MATLAB-api-plotlyupdate ' ,' plotly' );
182
182
183
183
% files in Plotly repo root
184
- repoRoot = dir(fullfile(plotlyUpdateDir ,' MATLAB-api-master ' ));
184
+ repoRoot = dir(fullfile(plotlyUpdateDir ,' MATLAB-api-plotlyupdate ' ));
185
185
186
186
% files not to be included
187
187
repoExclude = {' .' ,' ..' ,' .gitignore' ,' plotly' };
@@ -190,7 +190,7 @@ function plotlyupdate(varargin)
190
190
d = 1 ;
191
191
for r = 1 : length(repoRoot );
192
192
if (isempty(intersect(repoRoot(r ).name,repoExclude )))
193
- auxFiles{d } = fullfile(plotlyUpdateDir ,' MATLAB-api-master ' ,repoRoot(r ).name);
193
+ auxFiles{d } = fullfile(plotlyUpdateDir ,' MATLAB-api-plotlyupdate ' ,repoRoot(r ).name);
194
194
d = d + 1 ;
195
195
end
196
196
end
0 commit comments