comparison checkSbplib.m @ 140:579c348244a0

Added a settings file to checkSbplib()
author Jonatan Werpers <jonatan@werpers.com>
date Tue, 23 Feb 2016 14:33:50 +0100
parents 6cf264b023b0
children
comparison
equal deleted inserted replaced
139:6cf264b023b0 140:579c348244a0
2 2
3 3
4 files = collectTargets([]); 4 files = collectTargets([]);
5 5
6 if nargout == 0 6 if nargout == 0
7 checkcode(files); 7 checkcode(files, '-config=checksettings.txt');
8 return 8 return
9 end 9 end
10 10
11 res = checkcode(files); 11 res = checkcode(files, '-config=checksettings.txt');
12 12
13 % Remove any empty respones 13 % Remove any empty respones
14 I = []; 14 I = [];
15 for i = 1:length(res) 15 for i = 1:length(res)
16 if isempty(res{i}) 16 if isempty(res{i})