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
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
The text was updated successfully, but these errors were encountered:
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
The text was updated successfully, but these errors were encountered: