Skip to content

Commit

Permalink
build_utils/discover_progs: fix .svn reference
Browse files Browse the repository at this point in the history
  • Loading branch information
dev-zero committed Oct 29, 2018
1 parent 75327d6 commit 746d15c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/build_utils/discover_programs.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ def main():
sys.stderr.write("Discovering programs ...\n")

programs = []
for root, dirs, files in os.walk(srcdir):
for root, _, files in os.walk(srcdir):
if(root.endswith("/preprettify")):
continue
if("/.svn" in root):
if("/.git" in root):
continue

for fn in files:
Expand Down

0 comments on commit 746d15c

Please sign in to comment.