@techee commented on this pull request.
> @@ -13,12 +13,18 @@ dstdir = os.path.abspath(sys.argv[2]) os.chdir(dstdir + '/parsers') -parser_dst_files = glob.glob('*.c') + glob.glob('*.h') +parser_dst_files = glob.glob('**/*.c') + glob.glob('**/*.h')
Maybe I would slightly prefer mirroring the ctags directory structure - i.e. having peg outside the parsers directory. That would mean explicitly mentioning peg
and parsers
directories in the globs and in the code below eliminating the
if os.path.exists('parsers/' + f):
shutil.copy('parsers/' + f, dstdir + '/parsers/' + f)
part.
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub, or unsubscribe.
Triage notifications on the go with GitHub Mobile for iOS or Android.