From c68da8da1abb5a7f105b87b51feed11804849ccb Mon Sep 17 00:00:00 2001 From: Kei Okada Date: Sat, 8 Jul 2017 01:06:45 +0900 Subject: [PATCH] forget to return result on check_duplicates.py --- scripts/check_duplicates.py | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/check_duplicates.py b/scripts/check_duplicates.py index afaa76d420fc5..946d0fff13148 100755 --- a/scripts/check_duplicates.py +++ b/scripts/check_duplicates.py @@ -163,6 +163,7 @@ def main(infile): print_test('checking with %s'%(matcher.tags)) sources = [x for x in sources if matcher.matches(x)] ret = ret & check_duplicates(sources) + return ret if __name__ == '__main__': parser = argparse.ArgumentParser(description='Checks whether rosdep files contains duplicate ROS rules')