浏览代码

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

rdb 7 年之前
父节点
当前提交
305621338f
共有 1 个文件被更改,包括 1 次插入1 次删除
  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):
 class bdist_apps(setuptools.Command):
     DEFAULT_INSTALLERS = {
     DEFAULT_INSTALLERS = {
         'manylinux1_x86_64': ['gztar'],
         'manylinux1_x86_64': ['gztar'],
-        'manylinux1_i386': ['gztar'],
+        'manylinux1_i686': ['gztar'],
         # Everything else defaults to ['zip']
         # Everything else defaults to ['zip']
     }
     }