mirror of
https://github.com/monero-project/meta.git
synced 2025-01-31 06:55:51 +00:00
change elif to if for matching CMakeLists.txt
This commit is contained in:
parent
b0746cbc9f
commit
dbcebd59a3
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue