From e9f5a09d3aa92f114e8ce859cf31e3b99ccff9a8 Mon Sep 17 00:00:00 2001 From: Dan Stromberg Date: Mon, 14 Jun 2021 19:38:25 -0700 Subject: [PATCH] Fixed a typo in the ignore list --- installer | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/installer b/installer index 81e02690..3f863094 100755 --- a/installer +++ b/installer @@ -117,7 +117,7 @@ def copytree(src, dst, symlinks=False, ignore=None, copy_function=shutil.copy2, def copy(source_dir, dest_dir): """Copy modules to a lib location.""" - ignore = shutil.ignore_patterns('test_*', 'setup.py', 'dist', '*.ogg-info', '__pycache__') + ignore = shutil.ignore_patterns('test_*', 'setup.py', 'dist', '*.egg-info', '__pycache__') copytree(source_dir, dest_dir, symlinks=True, ignore=ignore, ignore_dangling_symlinks=False)