Skip to content

Commit c7ee7f9

Browse files
committed
Merge pull request #352 from grissiom/fix-tools-srcremove-st
tools: fix SrcRemove on empty src
2 parents 8b8d69f + 4d2972a commit c7ee7f9

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

tools/building.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -493,6 +493,9 @@ def EndBuilding(target, program = None):
493493
CscopeDatabase(Projects)
494494

495495
def SrcRemove(src, remove):
496+
if not src:
497+
return
498+
496499
if type(src[0]) == type('str'):
497500
for item in src:
498501
if os.path.basename(item) in remove:

0 commit comments

Comments
 (0)