Modify setuptools configuration to fix development ISOs (#969)
* Testing modifying setup.py to see if it fixes development ISOs
* Update setup.py
* Try this workaround
* This is ugly and I hate it, but it seems to work.
* Drop extra '
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.py b/setup.py index 68a125d1..639e4434 100644 --- a/ setup.py+++ b/ setup.py@@ -1,3 +1,3 @@ import setuptools # type: ignore -setuptools.setup() +setuptools.setup(package_data={'archinstall': ['locales/*','locales/*/*','locales/*/*/*']}, include_package_data=True) |