MATLAB.devTools icon indicating copy to clipboard operation
MATLAB.devTools copied to clipboard

confDevTools

Open rmtfleming opened this issue 6 years ago • 0 comments

Change function confDevTools(repoName, varargin) so that it returns some more useful output.

% check if the remoteRepoURL exists before proceeding [status_curl, result_curl] = system(['curl -s -k --head ', tmpRemoteRepoURL]); if ~(status_curl == 0 && ~isempty(strfind(result_curl, '200 OK'))) status_curl result_curl error([' [', mfilename, '] The URL (' remoteRepoURL ') is not reachable or does not exist.']); end

rmtfleming avatar Nov 20 '19 16:11 rmtfleming