Browse Source

deploy-ng: fix wrong platform tag for 32-bit Linux in bdist_apps

rdb 7 years ago
parent
commit
305621338f
1 changed files with 1 additions and 1 deletions
  1. 1 1
      direct/src/showutil/dist.py

+ 1 - 1
direct/src/showutil/dist.py

@@ -1126,7 +1126,7 @@ class build_apps(setuptools.Command):
 class bdist_apps(setuptools.Command):
     DEFAULT_INSTALLERS = {
         'manylinux1_x86_64': ['gztar'],
-        'manylinux1_i386': ['gztar'],
+        'manylinux1_i686': ['gztar'],
         # Everything else defaults to ['zip']
     }