Kaydet (Commit) b2abd61d authored tarafından root's avatar root

fix ignore dependency force update system.base bug

üst 320d007d
......@@ -56,10 +56,11 @@ def install_pkg_names(A, reinstall=False, extra=False):
ctx.ui.info(util.format_by_columns(sorted(d)))
A = Ap
if componentdb.has_component('system.base'):
systembase = componentdb.get_union_component('system.base').packages
for pkg in systembase:
A.add(pkg)
if not ctx.config.get_option('ignore_dependency'):
if componentdb.has_component('system.base'):
systembase = componentdb.get_union_component('system.base').packages
for pkg in systembase:
A.add(pkg)
if len(A) == 0:
ctx.ui.info(_('No packages to install.'))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment