Skip to content

Commit 5481983

Browse files
bronsolobronsolo
authored andcommitted
replace master with plotlyupdate
1 parent e576098 commit 5481983

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

plotly/plotly_setup_aux/plotlyupdate.m

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ function plotlyupdate(varargin)
133133
fprintf(['Downloading the Plotly API Matlab Library v.' pvRemote ' ... ']);
134134
end
135135

136-
newPlotlyUrl = 'https://github.com/plotly/MATLAB-api/archive/master.zip';
136+
newPlotlyUrl = 'https://github.com/plotly/MATLAB-api/archive/plotlyupdate.zip';
137137
newPlotlyZip = fullfile(plotlyUpdateDir,['plotlyupdate_' pvRemote '.zip']);
138138

139139
%download from url
@@ -178,10 +178,10 @@ function plotlyupdate(varargin)
178178
end
179179

180180
% new Plotly directory
181-
newPlotlyDir = fullfile(plotlyUpdateDir,'MATLAB-api-master','plotly');
181+
newPlotlyDir = fullfile(plotlyUpdateDir,'MATLAB-api-plotlyupdate','plotly');
182182

183183
% files in Plotly repo root
184-
repoRoot = dir(fullfile(plotlyUpdateDir,'MATLAB-api-master'));
184+
repoRoot = dir(fullfile(plotlyUpdateDir,'MATLAB-api-plotlyupdate'));
185185

186186
% files not to be included
187187
repoExclude = {'.','..','.gitignore','plotly'};
@@ -190,7 +190,7 @@ function plotlyupdate(varargin)
190190
d = 1;
191191
for r = 1:length(repoRoot);
192192
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);
194194
d = d+1;
195195
end
196196
end

0 commit comments

Comments
 (0)