Make Argument Clinic's '--make' option work on Windows.

This commit is contained in:
Zachary Ware 2015-04-13 18:33:41 -05:00
parent ae9f0fede3
commit bbbbe7e4e6

View file

@ -4164,7 +4164,7 @@ def main(argv):
cmdline.print_usage()
sys.exit(-1)
for root, dirs, files in os.walk('.'):
for rcs_dir in ('.svn', '.git', '.hg', 'build'):
for rcs_dir in ('.svn', '.git', '.hg', 'build', 'externals'):
if rcs_dir in dirs:
dirs.remove(rcs_dir)
for filename in files: