Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDylan M. Taylor <dylan@dylanmtaylor.com>2022-02-12 12:58:41 -0500
committerGitHub <noreply@github.com>2022-02-12 18:58:41 +0100
commitc3310d01b76c4adc7194cd9300bf0a12595a355f (patch)
tree93e6a10709e3bf868d243e2d65e4ea146d5a9023
parent1df17eb987241d0f190df1081d242bbdb248c423 (diff)
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 '
-rw-r--r--setup.py2
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)