diff --git a/buildbot/master/master.cfg b/buildbot/master/master.cfg index 27aea7f..741fc11 100644 --- a/buildbot/master/master.cfg +++ b/buildbot/master/master.cfg @@ -76,7 +76,7 @@ def startCompile(change): if fn.endswith('.asc') or fn.endswith('.md') or fn.endswith('.txt'): compile = False # don't ignore changes to CMakeLists.txt files - elif re.match('CMakeLists.txt', fn): + if re.match('CMakeLists.txt', fn): compile = True else: return True