mirror of
https://github.com/sotam0316/docker-py-revanced.git
synced 2026-04-25 03:48:37 +09:00
🐛 Rip lib only for extended apps
This commit is contained in:
+5
-1
@@ -104,7 +104,11 @@ class Parser(object):
|
|||||||
|
|
||||||
if self._PATCHES:
|
if self._PATCHES:
|
||||||
args.extend(self._PATCHES)
|
args.extend(self._PATCHES)
|
||||||
if self.config.build_extended and len(self.config.archs_to_build) > 0:
|
if (
|
||||||
|
self.config.build_extended
|
||||||
|
and len(self.config.archs_to_build) > 0
|
||||||
|
and app in self.config.extended_apps
|
||||||
|
):
|
||||||
excluded = set(possible_archs) - set(self.config.archs_to_build)
|
excluded = set(possible_archs) - set(self.config.archs_to_build)
|
||||||
for arch in excluded:
|
for arch in excluded:
|
||||||
args.append("--rip-lib")
|
args.append("--rip-lib")
|
||||||
|
|||||||
Reference in New Issue
Block a user